Skip to content

Commit

Permalink
build: prepare for 0.6.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
nialov committed Dec 14, 2023
1 parent b72fd62 commit 773e4cd
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 3 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/main.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -76,8 +76,9 @@ jobs:

- name: Create incremental changelog
run: >
sed -n '2,/Release Changelog/p' CHANGELOG.md | head -n -4
sed -n '3,/## v[[:digit:]].[[:digit:]].[[:digit:]]/p' CHANGELOG.md | head -n -2
> RELEASE_CHANGELOG.md
# sed -n '2,/Release Changelog/p' CHANGELOG.md | head -n -4
- name: Echo RELEASE_CHANGELOG.md
run: cat RELEASE_CHANGELOG.md
Expand Down
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Changelog

## v0.6.0 (2023-12-14)

### New Features

- **analysis:** Allow creating contour grids without determination of
branches and nodes i.e. topology ([854d1e03](854d1e03))

### Fixes

- **analysis:** Disable parallel processing on Windows due to instability ([614070fd](614070fd))

## v0.5.3 (2023-05-09)

### New Features
Expand Down
2 changes: 1 addition & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ let

self = buildPythonPackage {
pname = "fractopo";
version = "0.5.3";
version = "0.6.0";

src = filter {
root = ./.;
Expand Down
2 changes: 1 addition & 1 deletion fractopo/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

log = logging.getLogger(__name__)

__version__ = "0.5.3"
__version__ = "0.6.0"


log.info(
Expand Down

0 comments on commit 773e4cd

Please sign in to comment.