Skip to content

Commit

Permalink
Release 2.1.1 (#101)
Browse files Browse the repository at this point in the history
  • Loading branch information
shane-kerr authored Nov 4, 2018
1 parent d863259 commit cd20f1a
Show file tree
Hide file tree
Showing 7 changed files with 28 additions and 9 deletions.
19 changes: 19 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
# 2.1.1

_Bad people are bad._

This release is mostly because we had some infected binaries published
on GitHub for version 2.1.0. These were taken down as soon as they
were discovered and all accounts that could have published these were
either disabled or had their passwords updated. To help people using
the MintCoin wallet be sure that they are using a clean version, we
are releasing 2.1.1.

There are only two real changes to the code, both minor:

* We work better with the `en_DK` local, which provides ISO 8601
formatting for dates & times.

* A few warnings for potential problems spotted by the most recent gcc
compiler version were fixed.

# 2.1.0

_Welcome back, MintCoin!_
Expand Down
2 changes: 1 addition & 1 deletion doc/README
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Copyright (c) 2013-2018 MintCoin Developers


MintCoin 2.1.0
MintCoin 2.1.1

Copyright (c) 2013-2018 MintCoin Developers
Copyright (c) 2013 NovaCoin Developers
Expand Down
2 changes: 1 addition & 1 deletion doc/README_windows.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Copyright (c) 2013-2018 MintCoin Developers


MintCoin 2.1.0
MintCoin 2.1.1

Copyright (c) 2013-2018 MintCoin Developers
Copyright (c) 2013 NovaCoin Developers
Expand Down
2 changes: 1 addition & 1 deletion mintcoin-qt.pro
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
TEMPLATE = app
TARGET = MintCoin-Qt
VERSION = 2.2.0
VERSION = 2.1.1
INCLUDEPATH += src src/json src/qt
DEFINES += QT_GUI BOOST_THREAD_USE_LIB BOOST_SPIRIT_THREADSAFE BOOST_THREAD_PROVIDES_GENERIC_SHARED_MUTEX_ON_WIN __NO_SYSTEM_INCLUDES
CONFIG += no_include_pwd
Expand Down
2 changes: 1 addition & 1 deletion share/genbuild.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ else
exit 1
fi

DESC="v2.2.0"
DESC="v2.1.1"
SUFFIX=""
LAST_COMMIT_DATE=""
if [ -e "$(which git 2>/dev/null)" -a "$(git rev-parse --is-inside-work-tree 2>/dev/null)" = "true" ]; then
Expand Down
4 changes: 2 additions & 2 deletions share/setup.nsi
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ SetCompressor /SOLID lzma

# General Symbol Definitions
!define REGKEY "SOFTWARE\$(^Name)"
!define VERSION 2.1.0
VIProductVersion "2.1.0.1"
!define VERSION 2.1.1
VIProductVersion "2.1.1.0"
!define COMPANY "MintCoin Community"
!define URL http://www.mintcoinofficial.com

Expand Down
6 changes: 3 additions & 3 deletions src/clientversion.h
Original file line number Diff line number Diff line change
Expand Up @@ -7,15 +7,15 @@

// These need to be macros, as version.cpp's and bitcoin-qt.rc's voodoo requires it
#define CLIENT_VERSION_MAJOR 2
#define CLIENT_VERSION_MINOR 2
#define CLIENT_VERSION_REVISION 0
#define CLIENT_VERSION_MINOR 1
#define CLIENT_VERSION_REVISION 1
#define CLIENT_VERSION_BUILD 0

// Client version number
#define CLIENT_VERSION_SUFFIX ""

// Set to true for release, false for prerelease or test build
#define CLIENT_VERSION_IS_RELEASE false
#define CLIENT_VERSION_IS_RELEASE true

// Converts the parameter X to a string after macro replacement on X has been performed.
// Don't merge these into one macro!
Expand Down

0 comments on commit cd20f1a

Please sign in to comment.