Skip to content

Commit 475da76

Browse files
committed
revert to dev version
1 parent 707fcc1 commit 475da76

File tree

8 files changed

+11
-7
lines changed

8 files changed

+11
-7
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.15)
22

33
project(
44
fastscapelib
5-
VERSION "0.3.0"
5+
VERSION "0.4.0"
66
LANGUAGES CXX)
77

88
message(STATUS "Building fastscapelib v${PROJECT_VERSION}")

HOW_TO_RELEASE.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ Some instructions on how to make a new release of Fastscapelib
1313
3. Run ``tbump x.y.z --dry-run`` from the project's root directory and check the
1414
changes that will be made. If everything looks good, run ``tbump z.y.z``. If
1515
you need to install tbump first, see https://github.com/your-tools/tbump.
16+
(FIXME: tbump automatic push won't work because there's no actual change, i.e.,
17+
the new version number corresponds to the current development version number).
1618

1719
4. Push the ``main`` branch with the last commits to
1820
https://github.com/fastscape-lem/fastscapelib.

doc/source/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
copyright = "since 2018, Fastscapelib developers"
3434
author = "Benoit Bovy"
3535
# The short X.Y version
36-
version = "0.3.0"
36+
version = "0.4.0"
3737
# The full version, including alpha/beta/rc tags
3838
release = version
3939

doc/source/release_notes.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
# Release Notes
44

5+
## v0.4.0 (Unreleased)
6+
57
## v0.3.0 (25 June 2025)
68

79
Thanks to the contributors to this release: Benoît Bovy, Adrien Delsalle,
@@ -28,7 +30,7 @@ and Wolfgang Bangerth.
2830
the C++ grid class templates have been slightly refactored and the type aliases
2931
have been removed.
3032

31-
### New Features
33+
### New features
3234

3335
- Added flow kernels and parallel execution of kernels and/or flow routers
3436
({pull}`157`, {pull}`185`, {pull}`186`, {pull}`187`).

include/fastscapelib/version.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#define FASTSCAPELIB_CONFIG_HPP
33

44
#define FASTSCAPELIB_VERSION_MAJOR 0
5-
#define FASTSCAPELIB_VERSION_MINOR 3
5+
#define FASTSCAPELIB_VERSION_MINOR 4
66
#define FASTSCAPELIB_VERSION_PATCH 0
77

88
#include <string>

pixi.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ authors = ["Benoit Bovy", "Fastscapelib contributors"]
44
channels = ["conda-forge"]
55
description = "A C++/Python library of efficient algorithms for landscape evolution modeling"
66
platforms = ["win-64", "linux-64", "osx-64", "osx-arm64"]
7-
version = "0.3.0"
7+
version = "0.4.0"
88
repository = "https://github.com/fastscape-lem/fastscapelib"
99
documentation = "https://fastscapelib.readthedocs.io"
1010

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ build-backend = "scikit_build_core.build"
1111

1212
[project]
1313
name = "fastscapelib"
14-
version = "0.3.0"
14+
version = "0.4.0"
1515
description = "A C++/Python library of efficient algorithms for landscape evolution modeling"
1616
keywords = ["modeling", "topography", "geomorphology", "landscape-evolution"]
1717
readme = "README.rst"

tbump.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[version]
2-
current = "0.3.0"
2+
current = "0.4.0"
33
regex = '''
44
(?P<major>\d+)
55
\.

0 commit comments

Comments
 (0)