Skip to content

Commit 0459a4e

Browse files
authored
Merge pull request #14 from bird-house/prepare-release-0.4.4
updated changes for release 0.4.4
2 parents 8b81dbe + 1b368e5 commit 0459a4e

File tree

3 files changed

+45
-23
lines changed

3 files changed

+45
-23
lines changed

CHANGES.rst

Lines changed: 28 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,15 @@
22
Changes
33
=======
44

5-
Unreleased
6-
==================
5+
`Unreleased <https://github.com/bird-house/threddsclient/tree/master>`_
6+
==========================================================================================
7+
8+
* Nothing new for the moment.
9+
10+
.. _changes_0.4.4:
11+
12+
`0.4.4 <https://github.com/bird-house/threddsclient/tree/v0.4.4>`_ (2023-07-11)
13+
==========================================================================================
714

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

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

1825
* fix xml parsing for recent versions
1926

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

2330
* fixed conda links in Readme.
2431

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

2835
* fixed docs formatting.
2936

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

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

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

3946
* support for Python 3.x (#1)
4047

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

4451
* fixed travis build/tests
4552
* updated docs
4653

4754
0.3.3 (2015-10-24)
48-
==================
55+
==========================================================================================
4956

5057
* converted docs to rst.
5158
* MANIFEST.in added.
5259

5360
0.3.2 (2015-07-15)
54-
==================
61+
==========================================================================================
5562

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

5966
0.3.1 (2015-06-14)
60-
==================
67+
==========================================================================================
6168

6269
* fixed catalog.follow()
6370
* using dataset.download_url()
6471
* added ipython example
6572
* cleaned up Readme
6673

6774
0.3.0 (2015-06-13)
68-
==================
75+
==========================================================================================
6976

7077
* Refactored
7178
* added catalog.opendap_urls()
7279

7380
0.2.0 (2015-06-08)
74-
==================
81+
==========================================================================================
7582

7683
* Refactored
7784
* using CollectionDataset
7885
* added catalog.download_urls()
7986

8087
0.1.1 (2015-06-05)
81-
==================
88+
==========================================================================================
8289

8390
* Fixed catalog generation.
8491
* added pytest dependency.
8592

8693
0.1.0 (2015-03-13)
87-
==================
94+
==========================================================================================
8895

8996
* Version by https://github.com/ScottWales/threddsclient.

setup.cfg

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.4.3
2+
current_version = 0.4.4
33
commit = True
44
tag = True
55

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

13+
[bumpversion:file:CHANGES.rst]
14+
search =
15+
`Unreleased <https://github.com/bird-house/threddsclient/tree/master>`_
16+
==========================================================================================
17+
replace =
18+
`Unreleased <https://github.com/bird-house/threddsclient/tree/master>`_
19+
==========================================================================================
20+
21+
* Nothing new for the moment.
22+
23+
.. _changes_{new_version}:
24+
25+
`{new_version} <https://github.com/bird-house/threddsclient/tree/v{new_version}>`_ ({now:%%Y-%%m-%%d})
26+
==========================================================================================
27+
1328
[tool:pytest]
1429
addopts =
1530
--strict

threddsclient/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
from .client import download_urls, opendap_urls, read_url, read_xml, crawl
22

3-
__version__ = '0.4.3'
3+
__version__ = '0.4.4'

0 commit comments

Comments
 (0)