Skip to content

Commit

Permalink
Version bump to final.2
Browse files Browse the repository at this point in the history
  • Loading branch information
ptsavol committed Jun 3, 2021
1 parent a1da1bb commit 0d93e5e
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 3 deletions.
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,14 @@ 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-final.2] - 2021-06-03

### Fixed
- [win-x64] Running Python or Julia Tools does not open an extra console window anymore

### Security
- urllib3 v1.26.5 now required because of a security vulnerability in earlier versions

## [0.6.0-final.1] - 2021-06-01

### Fixed
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-final.1"
#define MyAppVersion "0.6.0-final.2"
#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-final.1"
#define MyAppVersion "0.6.0-final.2"
#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 = "final"
serial = 1
serial = 2
__version_info__ = VersionInfo(major, minor, micro, releaselevel, serial)
__version__ = ".".join([str(a) for a in __version_info__[:3]])

0 comments on commit 0d93e5e

Please sign in to comment.