diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 431b3959..ab8162aa 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -8,7 +8,7 @@ jobs: strategy: matrix: os: [ubuntu-latest, macos-latest] - python-version: ['3.8','3.11'] + python-version: ['3.8','3.10'] steps: - uses: actions/checkout@v2 - name: Set up python diff --git a/CHANGELOG.md b/CHANGELOG.md index 8eb17c73..db8e504f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,7 +5,7 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). -## [Unreleased] +## [0.0.2] ### Fixed - Typo with the license file, which was called 'LISENCE' instead of 'LICENSE'. ### Added diff --git a/CITATION.cff b/CITATION.cff index cb8d8d13..ff781769 100644 --- a/CITATION.cff +++ b/CITATION.cff @@ -8,6 +8,6 @@ authors: given-names: Alexis orcid: https://orcid.org/0000-0001-8953-1235 title: "Nbed" -version: 0.0.1 +version: 0.0.2 date-released: 2022-03-07 doi: 10.5281/zenodo.6323338 \ No newline at end of file diff --git a/docs/source/conf.py b/docs/source/conf.py index d2f16c18..f90b0722 100644 --- a/docs/source/conf.py +++ b/docs/source/conf.py @@ -24,7 +24,7 @@ author = "Michael Williams, Alexis Ralli" # The full version, including alpha/beta/rc tags -release = "0.0.1" +release = "0.0.2" # -- General configuration --------------------------------------------------- diff --git a/pyproject.toml b/pyproject.toml index 861efc30..dc5be1da 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "nbed" -version = "0.0.1" +version = "0.0.2" description = "" authors = ["Michael Williams "] @@ -49,6 +49,7 @@ requires = ["poetry-core>=1.0.0"] build-backend = "poetry.core.masonry.api" + [tool.poetry.scripts] nbed = "nbed.embed:cli"