Skip to content

Commit

Permalink
Merge pull request #14 from bird-house/prepare-release-0.4.4
Browse files Browse the repository at this point in the history
updated changes for release 0.4.4
  • Loading branch information
cehbrecht authored Jul 12, 2023
2 parents 8b81dbe + 1b368e5 commit 0459a4e
Show file tree
Hide file tree
Showing 3 changed files with 45 additions and 23 deletions.
49 changes: 28 additions & 21 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,15 @@
Changes
=======

Unreleased
==================
`Unreleased <https://github.com/bird-house/threddsclient/tree/master>`_
==========================================================================================

* Nothing new for the moment.

.. _changes_0.4.4:

`0.4.4 <https://github.com/bird-house/threddsclient/tree/v0.4.4>`_ (2023-07-11)
==========================================================================================

* add shield badges for PyPI and GitHub releases
* fix rendering of code blocks in ``README.rst``
Expand All @@ -12,78 +19,78 @@ Unreleased
* drop Travis CI configuration in favor of GitHub CI
* fix ``test_noaa`` with the target THREDDS server responding differently than originally tested

0.4.3 (2023-05-31)
==================
`0.4.3 <https://github.com/bird-house/threddsclient/tree/v0.4.3>`_ (2023-05-31)
==========================================================================================

* fix xml parsing for recent versions

0.4.2 (2019-11-20)
==================
`0.4.2 <https://github.com/bird-house/threddsclient/tree/v0.4.2>`_ (2019-11-20)
==========================================================================================

* fixed conda links in Readme.

0.4.1 (2019-11-06)
==================
`0.4.1 <https://github.com/bird-house/threddsclient/tree/v0.4.1>`_ (2019-11-06)
==========================================================================================

* fixed docs formatting.

0.4.0 (2019-11-06)
==================
`0.4.0 <https://github.com/bird-house/threddsclient/tree/v0.4.0>`_ (2019-11-06)
==========================================================================================

* drop Python 2.7 (#5)
* fix pip install (#4)

0.3.5 (2018-10-05)
==================
`0.3.5 <https://github.com/bird-house/threddsclient/tree/v0.3.5>`_ (2018-10-05)
==========================================================================================

* support for Python 3.x (#1)

0.3.4 (2015-10-25)
==================
`0.3.4 <https://github.com/bird-house/threddsclient/tree/v0.3.4>`_ (2015-10-25)
==========================================================================================

* fixed travis build/tests
* updated docs

0.3.3 (2015-10-24)
==================
==========================================================================================

* converted docs to rst.
* MANIFEST.in added.

0.3.2 (2015-07-15)
==================
==========================================================================================

* append catalog.xml to catalog url if missing
* crawl method added

0.3.1 (2015-06-14)
==================
==========================================================================================

* fixed catalog.follow()
* using dataset.download_url()
* added ipython example
* cleaned up Readme

0.3.0 (2015-06-13)
==================
==========================================================================================

* Refactored
* added catalog.opendap_urls()

0.2.0 (2015-06-08)
==================
==========================================================================================

* Refactored
* using CollectionDataset
* added catalog.download_urls()

0.1.1 (2015-06-05)
==================
==========================================================================================

* Fixed catalog generation.
* added pytest dependency.

0.1.0 (2015-03-13)
==================
==========================================================================================

* Version by https://github.com/ScottWales/threddsclient.
17 changes: 16 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.4.3
current_version = 0.4.4
commit = True
tag = True

Expand All @@ -10,6 +10,21 @@ description-file = README.rst
search = __version__ = '{current_version}'
replace = __version__ = '{new_version}'

[bumpversion:file:CHANGES.rst]
search =
`Unreleased <https://github.com/bird-house/threddsclient/tree/master>`_
==========================================================================================
replace =
`Unreleased <https://github.com/bird-house/threddsclient/tree/master>`_
==========================================================================================

* Nothing new for the moment.

.. _changes_{new_version}:

`{new_version} <https://github.com/bird-house/threddsclient/tree/v{new_version}>`_ ({now:%%Y-%%m-%%d})
==========================================================================================

[tool:pytest]
addopts =
--strict
Expand Down
2 changes: 1 addition & 1 deletion threddsclient/__init__.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
from .client import download_urls, opendap_urls, read_url, read_xml, crawl

__version__ = '0.4.3'
__version__ = '0.4.4'

0 comments on commit 0459a4e

Please sign in to comment.