diff --git a/CHANGELOG.md b/CHANGELOG.md index 92680af..244b67c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,19 @@ # Changelog +## 0.1.2 (2021-11-02) + +### Dev + +* Fix pyproject links. + ## 0.1.1 (2021-11-02) -* Update documentation +* Update documentation. ### Dev -* Move CI from TravisCI to Github Actions -* Switch to Poetry +* Move CI from TravisCI to Github Actions. +* Switch to Poetry. ## 0.1.0 (2019-08-06) diff --git a/pyproject.toml b/pyproject.toml index 43c2339..9995820 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,14 +1,14 @@ [tool.poetry] name = "sutoppu" -version = "0.1.1" +version = "0.1.2" description = "A simple python implementation of Specification pattern." authors = ["u8slvn "] license = "MIT" readme = "README.md" -repository = "https://github.com/u8slvn/markdownio" -homepage = "https://github.com/u8slvn/markdownio" +repository = "https://github.com/u8slvn/sutoppu" +homepage = "https://github.com/u8slvn/sutoppu" classifiers = [ "Intended Audience :: Developers", diff --git a/sutoppu.py b/sutoppu.py index efff30a..8b384f9 100644 --- a/sutoppu.py +++ b/sutoppu.py @@ -10,7 +10,7 @@ import functools __all__ = ["Specification"] -__version__ = "0.1.1" +__version__ = "0.1.2" class _SpecificationMeta(ABCMeta):