diff --git a/CHANGELOG.md b/CHANGELOG.md index c1dea25..f839230 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,39 @@ +## v0.1.0-rc.5 (2023-10-02) + +### Build + +* build: set masterblaster token as env-var (#32) + +* build: set env-vars for testing + +* test: change magic numbers for env-vars, intergration with controlled test-env on mb.gg, remove non-passing team-tests: the endpoints are intentionally left open by mb + +* fix: conditional parsing of optional values ([`c5fa86c`](https://github.com/Askepios-ai/masterblaster.py/commit/c5fa86c954c40537ebc32cd4e9bb83ffa0c7f7bc)) + +### Chore + +* chore: update readme and docs (#30) + +* chore: update readme + +* docs: update notebook ([`fe5d65b`](https://github.com/Askepios-ai/masterblaster.py/commit/fe5d65bb4effe9be00519804423ef20d7b84c3ea)) + +### Fix + +* fix: secrets and variables (#33) ([`f205297`](https://github.com/Askepios-ai/masterblaster.py/commit/f205297273f32927bd75fd11e634248975fb54f4)) + +### Unknown + +* O/dev (#31) + +* build: include asyncio test dependency + +* fix: masterblaster now supports(temporarily) csgo and cs2, requiring version specifiers ([`47e2540`](https://github.com/Askepios-ai/masterblaster.py/commit/47e25408f64bd8d751590057c8208bd41e599eb1)) + + ## v0.1.0-rc.4 (2023-09-24) ### Fix diff --git a/docs/conf.py b/docs/conf.py index 08683eb..aa1cc41 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -13,7 +13,7 @@ project = "masterblaster.py" copyright = "2023, Øyvind Nohr" author = "Øyvind Nohr" -version = "0.1.0-rc.4" +version = "0.1.0-rc.5" # -- General configuration --------------------------------------------------- # Add any Sphinx extension module names here, as strings. They can be diff --git a/masterblaster/__init__.py b/masterblaster/__init__.py index 3ba8ec5..62d7378 100644 --- a/masterblaster/__init__.py +++ b/masterblaster/__init__.py @@ -2,7 +2,7 @@ __author__ = "Øyvind Nohr" __license__ = "MIT" __copyright__ = "Copyright 2023 Øyvind Nohr" -__version__ = "0.1.0-rc.4" +__version__ = "0.1.0-rc.5" from .headers import * from .masterblaster import * diff --git a/pyproject.toml b/pyproject.toml index 0e857c4..1d17363 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name = "masterblaster.py" -version = "0.1.0-rc.4" +version = "0.1.0-rc.5" authors = ["Øyvind Nohr "] description = "Python API wrapper for masterblaster.gg" readme = "README.md"