Skip to content

Commit

Permalink
Release/v0.10.0 (#997)
Browse files Browse the repository at this point in the history
  • Loading branch information
savente93 authored Jun 14, 2024
1 parent ad2548e commit 85eb26a
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 4 deletions.
9 changes: 8 additions & 1 deletion .github/workflows/publish-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,14 @@ jobs:
pip install tomli flit twine
- name: Build artifacts
run: make pypi
run: |
python -m pip install --upgrade pip
python -m pip install flit wheel twine
git clean -xdf
git restore -SW .
flit build
python -m twine check dist/*
- uses: actions/upload-artifact@v3
with:
Expand Down
5 changes: 5 additions & 0 deletions docs/_static/switcher.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,11 @@
"version": "0.9.4",
"url": "https://deltares.github.io/hydromt/v0.9.4/"
},
{
"name": "v0.10.0",
"version": "0.10.0",
"url": "https://deltares.github.io/hydromt/v0.10.0/"
},
{
"name": "latest",
"version": "latest",
Expand Down
4 changes: 2 additions & 2 deletions docs/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ All notable changes to this project will be documented in this page.
The format is based on `Keep a Changelog`_, and this project adheres to
`Semantic Versioning`_.

Unreleased
==========
v0.10.0 (2024-06-14)
====================

New
---
Expand Down
2 changes: 1 addition & 1 deletion hydromt/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""HydroMT: Automated and reproducible model building and analysis."""

# version number without 'v' at start
__version__ = "0.9.5.dev0"
__version__ = "0.10.0"

# pkg_resource deprication warnings originate from dependencies
# so silence them for now
Expand Down

0 comments on commit 85eb26a

Please sign in to comment.