Skip to content

Commit 3e4dba9

Browse files
committed
Prepare for 0.6.0 release
1 parent 579ed88 commit 3e4dba9

File tree

4 files changed

+8
-7
lines changed

4 files changed

+8
-7
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# 0.6.0
1+
# 0.6.0 (2023-01-13)
22

33
## Prelude
44

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -240,13 +240,13 @@ Finally you should create the git tag for the git commit that you built. Run `gi
240240
241241
| | |
242242
|---|---|
243-
| python support | 3.8, 3.9, 3.10 |
243+
| python support | 3.8, 3.9, 3.10, 3.11 |
244244
| Source code | https://github.com/dynamist/subgit |
245245
| Changelog | https://github.com/dynamist/subgit/blob/master/CHANGELOG.md |
246246
| Issues | https://github.com/dynamist/subgit/issues |
247247
| Projects page | https://github.com/dynamist/subgit/projects/1
248248
| pypi | https://pypi.python.org/pypi/subgit/ |
249249
| License | `Apache-2.0` https://github.com/dynamist/subgit/blob/master/LICENSE |
250-
| Copyright | `Copyright (c) 2019-2021 Dynamist AB` |
250+
| Copyright | `Copyright (c) 2019-2023 Dynamist AB` |
251251
| git repo | `[email protected]:dynamist/subgit.git` |
252252
| install stable | `pip install subgit` |

setup.py

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setup(
77
name="subgit",
8-
version="0.5.1",
8+
version="0.6.0",
99
description="CLI tool ",
1010
long_description=readme,
1111
long_description_content_type="text/markdown",
@@ -51,8 +51,8 @@
5151
classifiers=[
5252
# "Development Status :: 1 - Planning",
5353
# "Development Status :: 2 - Pre-Alpha",
54-
"Development Status :: 3 - Alpha",
55-
# "Development Status :: 4 - Beta",
54+
# "Development Status :: 3 - Alpha",
55+
"Development Status :: 4 - Beta",
5656
# "Development Status :: 5 - Production/Stable",
5757
# "Development Status :: 6 - Mature",
5858
# "Development Status :: 7 - Inactive",
@@ -65,6 +65,7 @@
6565
"Programming Language :: Python :: 3.8",
6666
"Programming Language :: Python :: 3.9",
6767
"Programming Language :: Python :: 3.10",
68+
"Programming Language :: Python :: 3.11",
6869
"Natural Language :: English",
6970
],
7071
)

subgit/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
import os
99

1010
__author__ = "Johan Andersson <[email protected]>"
11-
__version_info__ = (0, 5, 1)
11+
__version_info__ = (0, 6, 0)
1212
__version__ = ".".join(map(str, __version_info__))
1313

1414

0 commit comments

Comments
 (0)