Skip to content
This repository was archived by the owner on Apr 5, 2025. It is now read-only.

Commit b88a01a

Browse files
committed
Bump version: 0.1.0-beta → 0.2.0-post1
1 parent fbf9054 commit b88a01a

10 files changed

+12
-221
lines changed

.bumpversion.cfg

+5-5
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,17 @@
11
[bumpversion]
2-
current_version = 0.1.0-beta
3-
commit = True
2+
current_version = 0.2.0-post1
3+
commit = False
44
tag = False
55
parse =
66
(?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+) # major, minor and patch
7-
(?:\-(?P<pre>(?:alpha|beta|rc))(\.(?P<prenum>\d+))?)? # pre-release
7+
(?:\-(?P<pre>(?:alpha|beta|rc))(?P<prenum>\d+)?)? # pre-release
88
serialize =
9-
{major}.{minor}.{patch}-{pre}.{prenum}
10-
{major}.{minor}.{patch}-{pre}
9+
{major}.{minor}.{patch}-{pre}{prenum}
1110
{major}.{minor}.{patch}
1211

1312
[bumpversion:part:pre]
1413
values =
14+
post
1515
alpha
1616
beta
1717
rc

CHANGELOG.md

-9
This file was deleted.

CODE_OF_CONDUCT.md

-76
This file was deleted.

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
11
# bookstack
22
A Python wrapper for [BookStack's](https://www.bookstackapp.com) API
33

4+
Current version: 0.2.0-post1
5+
46
# Installation
57
To install `bookstack`, run:
68

pytest.ini

-2
This file was deleted.

setup.py

+4-7
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,8 @@
99
EXTRAS_REQUIRE = {
1010
'dev': [
1111
'bump2version',
12-
'pylint',
13-
'pytest',
14-
'pytest-cov',
15-
'pytest-vcr',
16-
'tox'
12+
'setuptools',
13+
'twine'
1714
]
1815
}
1916
INSTALL_REQUIRES = [
@@ -50,10 +47,10 @@ def get_long_description(here):
5047
author=about['__author__'],
5148
author_email=about['__author_email__'],
5249
long_description_content_type='text/markdown',
53-
packages=find_packages('src'),
50+
packages=find_packages('src'),
5451
package_dir={'': 'src'},
5552
python_requires='>=3.6',
5653
install_requires=INSTALL_REQUIRES,
5754
extras_require=EXTRAS_REQUIRE,
5855
classifiers=CLASSIFIERS
59-
)
56+
)

src/bookstack/__version__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44
__maintainer__ = 'coffeepenbit'
55
__title__ = 'bookstack'
66
__url__ = "https://github.com/coffeepenbit/bookstack"
7-
__version__ = '0.1.0-beta'
7+
__version__ = '0.2.0-post1'

tests/test_models.py

-99
This file was deleted.

tests/test_readme.py

-9
This file was deleted.

tox.ini

-13
This file was deleted.

0 commit comments

Comments
 (0)