Skip to content

Commit

Permalink
MCTK-9: bump version to 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
marcusm117 authored May 12, 2023
1 parent a175b4f commit 5977b51
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.0.1
current_version = 0.1.0
commit = True
tag = True

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/contributing.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Contributing to MCTK
# Contributing

Hi! Thanks for your interest in contributing to [MCTK](https://github.com/marcusm117/mctk). You can contribute in many ways, including:

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/getstarted.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![PyPI](https://img.shields.io/pypi/v/mctk-py?color=blue&label=PyPI)](https://pypi.org/project/mctk-py/) [![CI](https://github.com/marcusm117/mctk/workflows/CI/badge.svg?branch=dev)](https://github.com/marcusm117/mctk/actions?query=workflow%3A%22Build+Status%22) [![codecov](https://codecov.io/gh/marcusm117/mctk/branch/dev/graph/badge.svg)](https://codecov.io/gh/marcusm117/mctk) [![Docs](https://github.com/marcusm117/mctk/workflows/Docs/badge.svg?branch=dev)](https://marcusm117.github.io/mctk/) [![License](https://img.shields.io/badge/License-Apache_2.0-green)](https://github.com/marcusm117/mctk/blob/dev/LICENSE) [![Issues](https://img.shields.io/github/issues/marcusm117/FV_mctk?color=red&label=Issues)](https://github.com/marcusm117/mctk/issues)

Model Checking Toolkit for Python.
[Model Checking Toolkit for Python.](https://marcusm117.github.io/mctk/)

## Overview

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.0.1"
__version__ = "0.1.0"
__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.0.1"
version = "0.1.0"
requires-python = ">=3.8"

dependencies = []
Expand Down

0 comments on commit 5977b51

Please sign in to comment.