Skip to content

Commit

Permalink
MCTK-14: bump version to 0.1.1 (#28)
Browse files Browse the repository at this point in the history
* update .bumpversion.cfg

* Bump version: 0.1.0 → 0.1.1

* update build.yml
  • Loading branch information
marcusm117 authored Jul 1, 2023
1 parent 5e4fd0f commit 355a2c5
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 14 deletions.
15 changes: 7 additions & 8 deletions .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,17 +1,16 @@
[bumpversion]
current_version = 0.1.0
current_version = 0.1.1
commit = True
tag = True
tag = False

[bumpversion:file:mctk/__init__.py]
search = __version__ = "{current_version}"
replace = __version__ = "{new_version}"

[bumpversion:file:pyproject.toml]
search = version="{current_version}"
replace = version="{new_version}"
search = version = "{current_version}"
replace = version = "{new_version}"


[bumpversion:file:mctk/docs/conf.py]
search = version="{current_version}"
replace = version="{new_version}"
[bumpversion:file:docs/conf.py]
search = release = '{current_version}'
replace = release = '{new_version}'
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ on:

jobs:
build:
runs-on: ${{ matrix.os }}
runs-on: ${{matrix.os}}

strategy:
matrix:
os: [ubuntu-latest, windows-latest]
python-version: [3.9]
os: [ubuntu-latest]
python-version: [3.9, 3.11]

steps:
- uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
author = 'marcusm117'

# The full version, including alpha/beta/rc tags
release = '0.1.0'
release = '0.1.1'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion mctk/__init__.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
from .models import KripkeStruct, KripkeStructError
from .checking import SAT_atom, NOT, AND, OR, IMPLIES, IFF, EX, AX, EF, AF, EG, AG, EU, AU

__version__ = "0.1.0"
__version__ = "0.1.1"
__all__ = [
"KripkeStruct",
"KripkeStructError",
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ name = "mctk-py"
authors = [{name = "marcusm117", email = "marcusmin117@gmail.com"}]
description="Model Checking Toolkit for Python"
readme = "README.md"
version = "0.1.0"
version = "0.1.1"
requires-python = ">=3.8"

dependencies = []
Expand Down

0 comments on commit 355a2c5

Please sign in to comment.