diff --git a/HISTORY.rst b/HISTORY.rst index 72ddb1bab20..07483f0186a 100644 --- a/HISTORY.rst +++ b/HISTORY.rst @@ -6,6 +6,26 @@ History .. towncrier release notes start +Parsec 1.7.0 (2020-02-22) +------------------------- + +Features +~~~~~~~~ + +* Add a way to copy/paste an internal link to a file (`#937 + `__) +* Access a file directly using an url (`#938 `__) + +Bugfixes +~~~~~~~~ + +* Disable file operations for a reader (`#981 + `__) +* Fix files display not being updated automatically (`#980 + `__) + + Parsec 1.6.0 (2020-02-12) ------------------------- diff --git a/newsfragments/937.feature.rst b/newsfragments/937.feature.rst deleted file mode 100644 index 3e36f12f38b..00000000000 --- a/newsfragments/937.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Add a way to copy/paste an internal link to a file diff --git a/newsfragments/938.feature.rst b/newsfragments/938.feature.rst deleted file mode 100644 index 7d80a3a46f6..00000000000 --- a/newsfragments/938.feature.rst +++ /dev/null @@ -1 +0,0 @@ -Access a file directly using an url diff --git a/newsfragments/980.bugfix.rst b/newsfragments/980.bugfix.rst deleted file mode 100644 index 802b65caeb6..00000000000 --- a/newsfragments/980.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Fix files display not being updated automatically diff --git a/newsfragments/981.bugfix.rst b/newsfragments/981.bugfix.rst deleted file mode 100644 index d8523f9f0f4..00000000000 --- a/newsfragments/981.bugfix.rst +++ /dev/null @@ -1 +0,0 @@ -Disable file operations for a reader diff --git a/parsec/_version.py b/parsec/_version.py index 029906e0ced..58bb4d8ee00 100644 --- a/parsec/_version.py +++ b/parsec/_version.py @@ -2,4 +2,4 @@ # This file is imported from __init__.py and exec'd from setup.py -__version__ = "1.6.0+dev" +__version__ = "1.7.0"