Skip to content

Commit 983c710

Browse files
committed
prep for release
1 parent 6b0987b commit 983c710

File tree

3 files changed

+20
-5
lines changed

3 files changed

+20
-5
lines changed

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,20 @@
22

33
Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and [Keep a Changelog](https://keepachangelog.com/en/1.0.0/) convention.
44

5+
## [3.0.2] - 06-29-2024
6+
7+
### Added
8+
9+
- unit tests
10+
11+
### Changed
12+
13+
- model deletion returns valid JSON on permission error
14+
15+
### Fixed
16+
17+
- multiple bugs for dataset generation, model creation, and cli
18+
519
## [3.0.1] - 06-27-2024
620

721
### Changed
@@ -81,6 +95,7 @@ Observes [Semantic Versioning](https://semver.org/spec/v2.0.0.html) standard and
8195

8296
- switched to `pathlib` for file path parsing
8397

98+
[3.0.2]: https://github.com/A-Baji/discordAI-modelizer/compare/3.0.1...3.0.2
8499
[3.0.1]: https://github.com/A-Baji/discordAI-modelizer/compare/3.0.0...3.0.1
85100
[3.0.0]: https://github.com/A-Baji/discordAI-modelizer/compare/2.0.1...3.0.0
86101
[2.0.1]: https://github.com/A-Baji/discordAI-modelizer/compare/1.2.2...2.0.1

discordai_modelizer/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.0.1"
1+
__version__ = "3.0.2"

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,11 @@
33
import sys
44
import discordai_modelizer as package
55

6-
min_py_version = (3, 8)
6+
min_py_version = (3, 9)
77

88
if sys.version_info < min_py_version:
99
sys.exit(
10-
"DiscordAI Model Gen is only supported for Python {}.{} or higher".format(
10+
"DiscordAI Modelizer is only supported for Python {}.{} or higher".format(
1111
*min_py_version
1212
)
1313
)
@@ -21,10 +21,10 @@
2121
version=package.__version__,
2222
author="Adib Baji",
2323
author_email="[email protected]",
24-
description="A package that utilizes openAI to create custom AI models out of your chat history",
24+
description="A package that utilizes openAI to create custom AI models out of your Discord chat history",
2525
long_description=pathlib.Path("README.md").read_text(),
2626
long_description_content_type="text/markdown",
27-
url="https://github.com/A-Baji/discordAI-model-gen",
27+
url="https://github.com/A-Baji/discordAI-modelizer",
2828
packages=setuptools.find_packages(exclude=["tests*"]),
2929
classifiers=[
3030
"Programming Language :: Python :: 3",

0 commit comments

Comments
 (0)