Skip to content

Commit 1458dfb

Browse files
author
github-actions
committed
0.1.0-rc.1
Automatically generated by python-semantic-release
1 parent c67bd39 commit 1458dfb

File tree

4 files changed

+98
-3
lines changed

4 files changed

+98
-3
lines changed

CHANGELOG.md

Lines changed: 95 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,95 @@
1+
# CHANGELOG
2+
3+
4+
5+
## v0.1.0-rc.1 (2023-09-15)
6+
7+
### Build
8+
9+
* build: testing with new tokens (#14)
10+
11+
Co-authored-by: Askepios-ai <[email protected]> ([`c67bd39`](https://github.com/Askepios-ai/masterblaster.py/commit/c67bd39587815d165d31bc0a31feb47f2287cf1c))
12+
13+
* build: use user token (#12)
14+
15+
Co-authored-by: Askepios-ai <[email protected]> ([`b14b563`](https://github.com/Askepios-ai/masterblaster.py/commit/b14b5637f925f74bc43246dd7bbb90241aa2a7ca))
16+
17+
### Chore
18+
19+
* chore: updated readme with doc badges for latest/beta (#5)
20+
21+
* chore: updated readme with doc badges for latest/beta
22+
23+
* fix: remove commit artifacts ([`9798616`](https://github.com/Askepios-ai/masterblaster.py/commit/9798616996706648e6469ac83d0e95b193ab20b1))
24+
25+
### Documentation
26+
27+
* docs: update notebook ([`5050363`](https://github.com/Askepios-ai/masterblaster.py/commit/5050363d463f8f60ded6518f4f82f92fd4cd8a4a))
28+
29+
### Feature
30+
31+
* feat: initial work (#2) ([`4042161`](https://github.com/Askepios-ai/masterblaster.py/commit/404216178055d5b3ada6197a66d5133840668d3d))
32+
33+
### Fix
34+
35+
* fix: missing documentation theme (#8)
36+
37+
* fix: missing documentation theme
38+
39+
* chore: remove unused dependencies ([`51d0384`](https://github.com/Askepios-ai/masterblaster.py/commit/51d0384ae5b0ef0a874fa737aea6e1580581b2aa))
40+
41+
### Refactor
42+
43+
* refactor: poetry uploads homepage and docs to pypi, bump version (#6)
44+
45+
Co-authored-by: Askepios-ai <[email protected]> ([`f605923`](https://github.com/Askepios-ai/masterblaster.py/commit/f605923653520a1832e675f5a66b032fa1ec1fdf))
46+
47+
### Unknown
48+
49+
* Change/clean deploy stage (#11) ([`1b27809`](https://github.com/Askepios-ai/masterblaster.py/commit/1b27809b74b84382f0239693700254e63a5ddc6d))
50+
51+
* CI Build and Release (#10)
52+
53+
* build(package): versioning done with semantic release
54+
55+
* build: CI build workflow
56+
57+
* build: CD test, versioning and publish workflow
58+
59+
Signed-off-by: Moritz Jörg <[email protected]>
60+
61+
* 0.1.0-alpha.1
62+
63+
Automatically generated by python-semantic-release
64+
65+
* chore: clean up log and fix build
66+
67+
* chore: cleanup old release
68+
69+
---------
70+
71+
Signed-off-by: Moritz Jörg <[email protected]>
72+
Co-authored-by: Askepios-ai <[email protected]>
73+
Co-authored-by: askepios-ai <[email protected]>
74+
Co-authored-by: semantic-release <semantic-release>
75+
Co-authored-by: github-actions <[email protected]> ([`73b238f`](https://github.com/Askepios-ai/masterblaster.py/commit/73b238f7adc4181c867c8cf93f8f211d50edd1c7))
76+
77+
* Docs (#7)
78+
79+
* docs: Added initial documentation for the package, magic methods and explicit hidden functions left out by sphinx
80+
81+
* docs: using pydata-theme for documentation ([`d2b4d16`](https://github.com/Askepios-ai/masterblaster.py/commit/d2b4d168d19a7856a0e0915e4fd13d1df8d2770b))
82+
83+
* RTD (#3) (#4)
84+
85+
* feat: initial work (#2)
86+
87+
* chore: update README
88+
89+
* fix: poetry does not allow . in project name, move to setuptools?
90+
91+
* chore: metdata and version bump ([`090d867`](https://github.com/Askepios-ai/masterblaster.py/commit/090d867ee9b713d20a6a8f6127ed24f0d1a6d242))
92+
93+
* Update README.md (#1) ([`97c5292`](https://github.com/Askepios-ai/masterblaster.py/commit/97c52928b5a4804952b64704f5731c7d386e66e0))
94+
95+
* Initial commit ([`508d054`](https://github.com/Askepios-ai/masterblaster.py/commit/508d054d787a51c77f4f9daba100ea1399f1f1c6))

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
project = "masterblaster.py"
1414
copyright = "2023, Øyvind Nohr"
1515
author = "Øyvind Nohr"
16-
version = "0.0.6"
16+
version = "0.1.0-rc.1"
1717

1818
# -- General configuration ---------------------------------------------------
1919
# Add any Sphinx extension module names here, as strings. They can be

masterblaster/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
__author__ = "Øyvind Nohr"
33
__license__ = "MIT"
44
__copyright__ = "Copyright 2023 Øyvind Nohr"
5-
__version__ = "0.0.6"
5+
__version__ = "0.1.0-rc.1"
66

77
from .headers import *
88
from .masterblaster import *

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "poetry.core.masonry.api"
44

55
[tool.poetry]
66
name = "masterblaster.py"
7-
version = "0.0.6"
7+
version = "0.1.0-rc.1"
88
authors = ["Øyvind Nohr <[email protected]>"]
99
description = "Python API wrapper for masterblaster.gg"
1010
readme = "README.md"

0 commit comments

Comments
 (0)