Skip to content

Commit

Permalink
Merge pull request #4 from OpenVoiceOS/release-0.3.1a1
Browse files Browse the repository at this point in the history
Release 0.3.1a1
  • Loading branch information
JarbasAl authored Sep 11, 2024
2 parents 5ff037a + c6ef8b4 commit 40d03b8
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
5 changes: 3 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,12 @@
# Changelog

## [Unreleased](https://github.com/OpenVoiceOS/skill-ovos-wallpapers/tree/HEAD)
## [0.3.1a1](https://github.com/OpenVoiceOS/skill-ovos-wallpapers/tree/0.3.1a1) (2024-09-11)

[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-wallpapers/compare/V0.1.0...HEAD)
[Full Changelog](https://github.com/OpenVoiceOS/skill-ovos-wallpapers/compare/V0.1.0...0.3.1a1)

**Merged pull requests:**

- fix:readme\_abs\_path [\#3](https://github.com/OpenVoiceOS/skill-ovos-wallpapers/pull/3) ([JarbasAl](https://github.com/JarbasAl))
- feat:semver [\#2](https://github.com/OpenVoiceOS/skill-ovos-wallpapers/pull/2) ([JarbasAl](https://github.com/JarbasAl))


Expand Down
4 changes: 3 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ def find_resource_files():
return package_data


with open("README.md", "r") as f:
BASEDIR = os.path.abspath(os.path.dirname(__file__))

with open(os.path.join(BASEDIR, "README.md"), "r") as f:
long_description = f.read()


Expand Down
4 changes: 2 additions & 2 deletions version.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# START_VERSION_BLOCK
VERSION_MAJOR = 0
VERSION_MINOR = 3
VERSION_BUILD = 0
VERSION_ALPHA = 0
VERSION_BUILD = 1
VERSION_ALPHA = 1
# END_VERSION_BLOCK

0 comments on commit 40d03b8

Please sign in to comment.