diff --git a/docs/releasenotes.rst b/docs/releasenotes.rst index b3f63a8..0971b0b 100644 --- a/docs/releasenotes.rst +++ b/docs/releasenotes.rst @@ -6,6 +6,7 @@ Release Notes .. toctree:: :maxdepth: 1 + releases/1.1.0 releases/1.0.0 releases/0.7.0 releases/0.6.0 diff --git a/docs/releases/1.1.0.rst b/docs/releases/1.1.0.rst new file mode 100644 index 0000000..744608d --- /dev/null +++ b/docs/releases/1.1.0.rst @@ -0,0 +1,23 @@ +.. _v1.1.0: + +neurotic 1.1.0 +============== + +2019-10-09 + +Improvements +------------ + +* Add API parameters and CLI argument for displaying the real-world date and + time (potentially inaccurate) + (`#110 `__, + `#118 `__) + +* Add printer-friendly theme (white background) + (`#114 `__) + +Documentation +------------- + +* Add documentation of GIN URLs for public and private repos + (`#113 `__) diff --git a/setup.py b/setup.py index 52b0761..a726c46 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ MAJOR = 1 # increment for backwards-incompatible changes MINOR = 1 # increment for backwards-compatible feature additions MICRO = 0 # increment for backwards-compatible bug fixes -IS_RELEASED = False # determines whether version will be marked as development +IS_RELEASED = True # determines whether version will be marked as development VERSION = f'{MAJOR}.{MINOR}.{MICRO}' # Try to fetch the git revision number from the .git directory if it exists,