Skip to content

Commit

Permalink
[DEV] Fixing the versions to now start v0.4.dev0 (#160)
Browse files Browse the repository at this point in the history
* Fixing the versions to now start v0.4.dev0

---------

Signed-off-by: Adam Li <adam2392@gmail.com>
  • Loading branch information
adam2392 authored Oct 31, 2023
1 parent f7bb8f6 commit ed82a9e
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 5 deletions.
4 changes: 3 additions & 1 deletion DEVELOPING.md
Original file line number Diff line number Diff line change
Expand Up @@ -190,4 +190,6 @@ or if you have two-factor authentication enabled: https://pypi.org/help/#apitoke

twine upload dist/* --repository scikit-tree

4. Update version number on ``meson.build`` and ``pyproject.toml`` to the relevant version.
4. Update version number on ``meson.build`` and ``pyproject.toml`` to the relevant version.

See https://github.com/neurodata/scikit-tree/pull/160 as an example.
7 changes: 6 additions & 1 deletion doc/_static/versions.json
Original file line number Diff line number Diff line change
@@ -1,9 +1,14 @@
[
{
"name": "0.3 (devel)",
"name": "0.4 (devel)",
"version": "dev",
"url": "https://docs.neurodata.io/scikit-tree/dev/"
},
{
"name": "0.3",
"version": "0.3",
"url": "https://docs.neurodata.io/scikit-tree/v0.3/"
},
{
"name": "0.2",
"version": "0.2",
Expand Down
2 changes: 1 addition & 1 deletion meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ project(
# Note that the git commit hash cannot be added dynamically here
# That only happens when importing from a git repository.
# See `sktree/__init__.py`
version: '0.3.0',
version: '0.4.0dev0',
license: 'BSD-3',
meson_version: '>= 0.64.0',
default_options: [
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ name = "scikit-tree"
# 0.0.0 is standard placeholder for poetry-dynamic-versioning
# any changes to this should not be checked in
#
version = "0.3.0"
version = "0.4.0dev0"
description = "Modern decision trees in Python"
maintainers = [
{name="Neurodata", email="adam.li@columbia.edu"}
Expand Down
2 changes: 1 addition & 1 deletion sktree/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
import os
import sys

__version__ = "0.3.0dev0"
__version__ = "0.4dev0"
logger = logging.getLogger(__name__)


Expand Down

0 comments on commit ed82a9e

Please sign in to comment.