Skip to content

Commit

Permalink
Changelog update and beta version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
ptsavol committed May 7, 2021
1 parent eba4d54 commit 60cca71
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,11 @@ All **notable** changes to this project are documented here.

The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)

## [0.6.0-beta.3] - 2021-05-07

### Fixed
- Bug in installing Plugins
- Traceback when removing Plugins

## [0.6.0-beta.2] - 2021-05-06

Expand Down
2 changes: 1 addition & 1 deletion setup-debug.iss
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Spine Toolbox Console"
#define MyAppVersion "0.6.0-beta.2"
#define MyAppVersion "0.6.0-beta.3"
#define MyAppPublisher "Spine Project Consortium"
#define MyAppURL "https://github.com/Spine-project"
#define MyAppExeName "spinetoolbox.exe"
Expand Down
2 changes: 1 addition & 1 deletion setup.iss
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
; SEE THE DOCUMENTATION FOR DETAILS ON CREATING INNO SETUP SCRIPT FILES!

#define MyAppName "Spine Toolbox"
#define MyAppVersion "0.6.0-beta.2"
#define MyAppVersion "0.6.0-beta.3"
#define MyAppPublisher "Spine Project Consortium"
#define MyAppURL "https://github.com/Spine-project"
#define MyAppExeName "spinetoolbox.exe"
Expand Down
2 changes: 1 addition & 1 deletion spinetoolbox/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ class VersionInfo(NamedTuple):
minor = 6
micro = 0
releaselevel = "beta"
serial = 2
serial = 3
__version_info__ = VersionInfo(major, minor, micro, releaselevel, serial)
__version__ = ".".join([str(a) for a in __version_info__[:3]])

0 comments on commit 60cca71

Please sign in to comment.