-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from JarbasHiveMind/release-0.0.2a2
Release 0.0.2a2
- Loading branch information
Showing
5 changed files
with
41 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
# Changelog | ||
|
||
## [0.0.2a2](https://github.com/JarbasHiveMind/hivemind-redis-database/tree/0.0.2a2) (2024-12-29) | ||
|
||
[Full Changelog](https://github.com/JarbasHiveMind/hivemind-redis-database/compare/0.0.2a1...0.0.2a2) | ||
|
||
**Merged pull requests:** | ||
|
||
- fix: missing hivemind entrypoint in setup.py [\#4](https://github.com/JarbasHiveMind/hivemind-redis-database/pull/4) ([JarbasAl](https://github.com/JarbasAl)) | ||
|
||
## [0.0.2a1](https://github.com/JarbasHiveMind/hivemind-redis-database/tree/0.0.2a1) (2024-12-29) | ||
|
||
[Full Changelog](https://github.com/JarbasHiveMind/hivemind-redis-database/compare/0.0.1...0.0.2a1) | ||
|
||
**Merged pull requests:** | ||
|
||
- fix: missing hivemind entrypoint in setup.py [\#2](https://github.com/JarbasHiveMind/hivemind-redis-database/pull/2) ([JarbasAl](https://github.com/JarbasAl)) | ||
|
||
|
||
|
||
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# START_VERSION_BLOCK | ||
VERSION_MAJOR = 0 | ||
VERSION_MINOR = 0 | ||
VERSION_BUILD = 1 | ||
VERSION_ALPHA = 0 | ||
VERSION_BUILD = 2 | ||
VERSION_ALPHA = 2 | ||
# END_VERSION_BLOCK |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,2 @@ | ||
py-redis | ||
py-redis | ||
hivemind-plugin-manager>=0.1.0,<1.0.0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -39,6 +39,7 @@ def required(requirements_file): | |
if pkg.strip() and not pkg.startswith("#")] | ||
|
||
|
||
PLUGIN_ENTRY_POINT = 'hivemind-redis-db-plugin=hivemind_redis_database:RedisDB' | ||
|
||
setup( | ||
name='hivemind-redis-database', | ||
|
@@ -48,6 +49,7 @@ def required(requirements_file): | |
license='Apache-2.0', | ||
author='jarbasAi', | ||
install_requires=required("requirements.txt"), | ||
entry_points={'hivemind.database': PLUGIN_ENTRY_POINT}, | ||
author_email='[email protected]', | ||
description='redis database plugin for hivemind-core' | ||
) |