Skip to content

Commit ef77799

Browse files
committed
Merge branch 'release'
2 parents 770d88b + 114f90e commit ef77799

File tree

4 files changed

+25
-17
lines changed

4 files changed

+25
-17
lines changed

CHANGELOG.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,14 @@
11
Changelog
22
=========
33

4+
1.1.3 (2022-04-30)
5+
------------------
6+
7+
docs
8+
^^^^
9+
- set badges in README to target the master branch
10+
11+
412
1.1.2 (2022-04-30)
513
------------------
614

README.rst

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ A Python package with common Software Design Patterns.
2020

2121

2222
|
23-
| **Documentation:** https://software-patterns.readthedocs.io/en/dev
24-
| **Source Code:** https://github.com/boromir674/software-patterns/tree/dev
25-
| **CI/CD:** https://circleci.com/gh/boromir674/software-patterns/tree/dev
23+
| **Documentation:** https://software-patterns.readthedocs.io/en/master
24+
| **Source Code:** https://github.com/boromir674/software-patterns/tree/master
25+
| **CI/CD:** https://circleci.com/gh/boromir674/software-patterns/
2626
|
2727
2828

@@ -107,18 +107,18 @@ Example code to use the `factory` pattern in the form of a `(sub) class registry
107107
108108
109109
110-
.. |circleci| image:: https://img.shields.io/circleci/build/github/boromir674/software-patterns/dev?logo=circleci
110+
.. |circleci| image:: https://img.shields.io/circleci/build/github/boromir674/software-patterns/master?logo=circleci
111111
:alt: CircleCI
112-
:target: https://circleci.com/gh/boromir674/software-patterns/tree/dev
112+
:target: https://circleci.com/gh/boromir674/software-patterns/tree/master
113113

114114

115-
.. |codecov| image:: https://codecov.io/gh/boromir674/software-patterns/branch/dev/graph/badge.svg?token=3POTVNU0L4
115+
.. |codecov| image:: https://codecov.io/gh/boromir674/software-patterns/branch/master/graph/badge.svg?token=3POTVNU0L4
116116
:alt: Codecov
117-
:target: https://app.codecov.io/gh/boromir674/software-patterns/branch/dev
117+
:target: https://app.codecov.io/gh/boromir674/software-patterns/branch/master
118118

119119

120-
.. |docs| image:: https://img.shields.io/readthedocs/software-patterns/dev?logo=readthedocs
121-
:target: https://software-patterns.readthedocs.io/en/dev/?badge=dev
120+
.. |docs| image:: https://img.shields.io/readthedocs/software-patterns/master?logo=readthedocs
121+
:target: https://software-patterns.readthedocs.io/en/master/?badge=master
122122
:alt: Read the Docs (version)
123123

124124
.. |pypi| image:: https://img.shields.io/pypi/v/software-patterns?color=blue&label=pypi&logo=pypi&logoColor=%23849ed9
@@ -133,19 +133,19 @@ Example code to use the `factory` pattern in the form of a `(sub) class registry
133133
:alt: PyPI - Python Version
134134
:target: https://pypi.org/project/software-patterns
135135

136-
.. |commits_since| image:: https://img.shields.io/github/commits-since/boromir674/software-patterns/v1.1.2/dev?color=blue&logo=Github
136+
.. |commits_since| image:: https://img.shields.io/github/commits-since/boromir674/software-patterns/v1.1.3/master?color=blue&logo=Github
137137
:alt: GitHub commits since tagged version (branch)
138-
:target: https://github.com/boromir674/software-patterns/compare/v1.1.2..master
138+
:target: https://github.com/boromir674/software-patterns/compare/v1.1.3..master
139139

140140

141141

142-
.. |better_code_hub| image:: https://bettercodehub.com/edge/badge/boromir674/software-patterns?branch=dev
142+
.. |better_code_hub| image:: https://bettercodehub.com/edge/badge/boromir674/software-patterns?branch=master
143143
:alt: Better Code Hub
144144
:target: https://bettercodehub.com/
145145

146-
.. |scrutinizer| image:: https://img.shields.io/scrutinizer/quality/g/boromir674/software-patterns/dev?logo=scrutinizer-ci
146+
.. |scrutinizer| image:: https://img.shields.io/scrutinizer/quality/g/boromir674/software-patterns/master?logo=scrutinizer-ci
147147
:alt: Scrutinizer code quality
148-
:target: https://scrutinizer-ci.com/g/boromir674/software-patterns/?branch=dev
148+
:target: https://scrutinizer-ci.com/g/boromir674/software-patterns/?branch=master
149149

150150
.. |nb-pypi-downloads| image:: https://img.shields.io/pypi/dm/software-patterns?logo=pypi&logoColor=%239AB3EE
151151
:alt: PyPI - Downloads

setup.cfg

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
[metadata]
22
## Setuptools specific information
33
name = software_patterns
4-
version = 1.1.2
4+
version = 1.1.3
55
description = Software Design Patterns with types in Python.
66
long_description = file: README.rst
77
long_description_content_type = text/x-rst
@@ -14,7 +14,7 @@ author_email = k.lampridis@hotmail.com
1414
# represents the web home page of the project
1515
url = https://github.com/boromir674/software_patterns
1616

17-
download_url = https://github.com/boromir674/software_patterns/archive/v1.1.2.tar.gz
17+
download_url = https://github.com/boromir674/software_patterns/archive/v1.1.3.tar.gz
1818

1919
## PyPi specific information
2020
project_urls =

src/software_patterns/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = '1.1.2'
1+
__version__ = '1.1.3'
22

33
from .notification import Observer, Subject
44
from .memoize import ObjectsPool

0 commit comments

Comments
 (0)