diff --git a/HISTORY.md b/HISTORY.md index f5d1f3b..e8fc402 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,10 @@ # Changes +### 1.1.3 (Oct 23 2023) +Bugfix release + * slip and dilatation tendency methods added to stress + * proj alias of project for FeatureSet added + ### 1.1.2 (Oct 09 2023) * added title_kws argument for plotting routines diff --git a/docs/conf.py b/docs/conf.py index 36ae657..96de8d3 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -71,7 +71,7 @@ # The short X.Y version. version = "1.1" # The full version, including alpha/beta/rc tags. -release = "1.1.2" +release = "1.1.3" # The language for content autogenerated by Sphinx. Refer to documentation # for a list of supported languages. diff --git a/setup.cfg b/setup.cfg index 09476ec..9675e81 100644 --- a/setup.cfg +++ b/setup.cfg @@ -1,5 +1,5 @@ [bumpversion] -current_version = 1.1.2 +current_version = 1.1.3 commit = False tag = False diff --git a/setup.py b/setup.py index 967e858..fc56771 100644 --- a/setup.py +++ b/setup.py @@ -17,7 +17,7 @@ setup( name="apsg", - version="1.1.2", + version="1.1.3", description="APSG - The package for structural geologists", long_description=readme + "\n\n" + history, long_description_content_type="text/markdown", diff --git a/src/apsg/__init__.py b/src/apsg/__init__.py index 782a893..45763fe 100644 --- a/src/apsg/__init__.py +++ b/src/apsg/__init__.py @@ -98,6 +98,6 @@ "quicknet", ) -__version__ = "1.1.2" +__version__ = "1.1.3" __author__ = "Ondrej Lexa" __email__ = "lexa.ondrej@gmail.com"