Skip to content

Commit

Permalink
bump version 0.0.1 -> 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kw-corne committed Oct 13, 2023
1 parent 017c8f4 commit 9467b42
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Auto-Verify 0.0.1
# Auto-Verify 0.1.0

```bash
conda create -n av python=3.10 -y
Expand Down
2 changes: 1 addition & 1 deletion autoverify/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import os
from pathlib import Path

__version__ = "0.0.1"
__version__ = "0.1.0"

ROOT_DIR = Path(os.path.dirname(os.path.abspath(__file__)))
DEFAULT_VERIFICATION_TIMEOUT_SEC = 600
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"

[project]
name = "auto-verify"
version = "0.0.1"
version = "0.1.0"
description = "Efficient portfolio-based verification of neural network properties"
readme = "README.md"
authors = [{ name = "Corné Spek" }]
Expand Down Expand Up @@ -80,7 +80,7 @@ warn_unused_configs = true
no_implicit_reexport = true

[tool.bumpver]
current_version = "0.0.1"
current_version = "0.1.0"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "bump version {old_version} -> {new_version}"
commit = true
Expand Down

0 comments on commit 9467b42

Please sign in to comment.