Skip to content

Commit

Permalink
[NEW] Typed Software Patterns v1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
boromir674 committed May 4, 2022
2 parents ef77799 + 16618e7 commit c6f6d1e
Show file tree
Hide file tree
Showing 6 changed files with 14 additions and 6 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
@@ -1,6 +1,14 @@
Changelog
=========

1.2.0 (2022-05-04)
------------------

feature
^^^^^^^
- enable types to be recognized by packages importing the software_patterns library


1.1.3 (2022-04-30)
------------------

Expand Down
4 changes: 2 additions & 2 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -133,9 +133,9 @@ Example code to use the `factory` pattern in the form of a `(sub) class registry
:alt: PyPI - Python Version
:target: https://pypi.org/project/software-patterns

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



Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
author = 'Konstantinos Lampridis'

# The full version, including alpha/beta/rc tags
release = '1.0.0'
release = '1.2.0'

# -- General configuration ---------------------------------------------------

Expand Down
4 changes: 2 additions & 2 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[metadata]
## Setuptools specific information
name = software_patterns
version = 1.1.3
version = 1.2.0
description = Software Design Patterns with types in Python.
long_description = file: README.rst
long_description_content_type = text/x-rst
Expand All @@ -14,7 +14,7 @@ author_email = k.lampridis@hotmail.com
# represents the web home page of the project
url = https://github.com/boromir674/software_patterns

download_url = https://github.com/boromir674/software_patterns/archive/v1.1.3.tar.gz
download_url = https://github.com/boromir674/software_patterns/archive/v1.2.0.tar.gz

## PyPi specific information
project_urls =
Expand Down
2 changes: 1 addition & 1 deletion src/software_patterns/__init__.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
__version__ = '1.1.3'
__version__ = '1.2.0'

from .notification import Observer, Subject
from .memoize import ObjectsPool
Expand Down
Empty file added src/software_patterns/py.typed
Empty file.

0 comments on commit c6f6d1e

Please sign in to comment.