Skip to content

Commit

Permalink
Merge pull request #242 from Ouranosinc/prep-0.7
Browse files Browse the repository at this point in the history
Prep 0.7.0
  • Loading branch information
RondeauG authored Aug 22, 2023
2 parents d3bbbe4 + 188598d commit 94fca2e
Show file tree
Hide file tree
Showing 6 changed files with 8 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .cruft.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"project_slug": "xscen",
"project_short_description": "A climate change scenario-building analysis framework, built with xclim/xarray.",
"pypi_username": "RondeauG",
"version": "0.6.24-beta",
"version": "0.7.0",
"use_pytest": "y",
"use_black": "y",
"add_pyup_badge": "n",
Expand Down
4 changes: 2 additions & 2 deletions HISTORY.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
History
=======

v0.7.0 (unreleased)
v0.7.0 (2023-08-22)
-------------------
Contributors to this version: Gabriel Rondeau-Genesse (:user:`RondeauG`), Pascal Bourgault (:user:`aulemahal`), Trevor James Smith (:user:`Zeitsperre`), Juliette Lavoie (:user:`juliettelavoie`), Marco Braun (:user:`vindelico`).

Expand All @@ -25,7 +25,7 @@ New features and enhancements
* ``generate_weights`` now allows to split weights between experiments, and make them vary along the time/horizon axis. (:issue:`108`, :pull:`231`).
* New independence_level, `institution`, added to ``generate_weights``. (:pull:`231`).
* Updated ``produce_horizon`` so it can accept multiple periods or warming levels. (:pull:`231`, :pull:`240`).
* Add more comments in the template. (:pull:`233`,:pull:`235`, :issue:`232`).
* Add more comments in the template. (:pull:`233`, :pull:`235`, :issue:`232`).
* New function ``diagnostics.health_checks`` that can perform multiple checkups on a dataset. (:pull:`238`).

Breaking changes
Expand Down
3 changes: 2 additions & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.6.24-beta
current_version = 0.7.0
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+).(?P<patch>\d+)(\-(?P<release>[a-z]+))?
Expand Down Expand Up @@ -90,3 +90,4 @@ append_only = true
[pydocstyle]
convention = numpy
match = ((?!test_|conf).)*\.py

2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,6 @@
test_suite="tests",
tests_require=["pytest", "pytest-cov"],
url="https://github.com/Ouranosinc/xscen",
version="0.6.24-beta",
version="0.7.0",
zip_safe=False,
)
2 changes: 1 addition & 1 deletion tests/test_xscen.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ def test_package_metadata(self):
contents = f.read()
assert """Gabriel Rondeau-Genesse""" in contents
assert '__email__ = "[email protected]"' in contents
assert '__version__ = "0.6.24-beta"' in contents
assert '__version__ = "0.7.0"' in contents
2 changes: 1 addition & 1 deletion xscen/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@

__author__ = """Gabriel Rondeau-Genesse"""
__email__ = "[email protected]"
__version__ = "0.6.24-beta"
__version__ = "0.7.0"


# monkeypatch so that warnings.warn() doesn't mention itself
Expand Down

0 comments on commit 94fca2e

Please sign in to comment.