Skip to content

Commit

Permalink
Bumping release number to 4.3.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
jdetaeye committed Jan 30, 2018
1 parent aadb3fe commit 8b85c96
Show file tree
Hide file tree
Showing 25 changed files with 39 additions and 39 deletions.
10 changes: 5 additions & 5 deletions Makefile.dist
Expand Up @@ -143,21 +143,21 @@ astyle:
# * The third argument can be empty. Or it can be a string starting with a '.'/dot.
old1 = 4
old2 = 3
old3 = .beta
old3 = 1
new1 = 4
new2 = 3
new3 =
new3 = 2
set_release:
for i in "configure.ac" "include/frepple/utils.h" "contrib/rpm/frepple.spec" "freppledb/__init__.py" "freppledb/locale/nl/LC_MESSAGES/django.po" "freppledb/locale/nl/LC_MESSAGES/djangojs.po" "freppledb/locale/zh_TW/LC_MESSAGES/django.po" "freppledb/locale/zh_TW/LC_MESSAGES/djangojs.po" "freppledb/locale/it/LC_MESSAGES/django.po" "freppledb/locale/it/LC_MESSAGES/djangojs.po" "freppledb/locale/fr/LC_MESSAGES/django.po" "freppledb/locale/fr/LC_MESSAGES/djangojs.po" "freppledb/locale/ja/LC_MESSAGES/django.po" "freppledb/locale/ja/LC_MESSAGES/djangojs.po" "freppledb/locale/zh_CN/LC_MESSAGES/djangojs.po" "freppledb/locale/zh_CN/LC_MESSAGES/django.po" "freppledb/locale/es/LC_MESSAGES/djangojs.po" "freppledb/locale/es/LC_MESSAGES/django.po" "freppledb/locale/pt_PT/LC_MESSAGES/djangojs.po" "freppledb/locale/pt_PT/LC_MESSAGES/django.po" "freppledb/locale/pt_BR/LC_MESSAGES/djangojs.po" "freppledb/locale/pt_BR/LC_MESSAGES/django.po" "bin/frepple.xsd" "contrib/debian/changelog" "doc/conf.py"; do \
sed 's/$(old1)\.$(old2)$(old3)/$(new1).$(new2)$(new3)/g' $$i >out.tmp; \
sed 's/$(old1)\.$(old2)\.$(old3)/$(new1).$(new2).$(new3)/g' $$i >out.tmp; \
mv out.tmp $$i; \
done
sed 's/version = "$(old1)\.$(old2)"/version = "$(new1).$(new2)"/g' "doc/conf.py" >out.tmp
mv out.tmp "doc/conf.py";
sed 's/Version "$(old1)\.$(old2)\./Version "$(new1).$(new2)./g' "contrib/installer/frepple.nsi" >out.tmp
sed 's/PRODUCT_VERSION "$(old1)\.$(old2)$(old3)"/PRODUCT_VERSION "$(new1).$(new2)$(new3)"/' out.tmp >"contrib/installer/frepple.nsi"
for i in "src/dll.rc" "src/exe.rc"; do \
sed 's/$(old1),$(old2),/$(new1),$(new2),/g' $$i >out.tmp; \
sed 's/$(old1), $(old2),/$(new1), $(new2),/g' out.tmp >$$i; \
sed 's/$(old1),$(old2),$(old3)/$(new1),$(new2),$(new3)/g' $$i >out.tmp; \
sed 's/$(old1), $(old2), $(old3)/$(new1), $(new2), $(new3)/g' out.tmp >$$i; \
rm out.tmp; \
done
2 changes: 1 addition & 1 deletion bin/frepple.xsd
Expand Up @@ -16,7 +16,7 @@
License along with this program. If not, see <http://www.gnu.org/licenses/>.
-->
<xsd:schema xmlns:xsd='http://www.w3.org/2001/XMLSchema'
elementFormDefault="unqualified" attributeFormDefault="unqualified" version="4.3">
elementFormDefault="unqualified" attributeFormDefault="unqualified" version="4.3.1">

<!-- ACTION -->
<xsd:simpleType name="action">
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Expand Up @@ -23,7 +23,7 @@
# Initialization
#
AC_PREREQ(2.60)
AC_INIT([frepple], [4.3])
AC_INIT([frepple], [4.3.1])
AC_CONFIG_SRCDIR([src/main.cpp])
AC_CONFIG_HEADER([config.h])
AM_INIT_AUTOMAKE([1.9 tar-ustar])
Expand Down
4 changes: 2 additions & 2 deletions contrib/debian/changelog
@@ -1,5 +1,5 @@
frepple (4.3-1) stable; urgency=low
frepple (4.3.1-1) stable; urgency=low

* frePPLe community edition 4.3
* frePPLe community edition 4.3.1

-- Johan De Taeye <jdetaeye@frepple.com> Mon, 3 Mar 2014 07:36:24 -0400
6 changes: 3 additions & 3 deletions contrib/installer/frepple.nsi
Expand Up @@ -25,7 +25,7 @@

; Main definitions
!define PRODUCT_NAME "frePPLe"
!define PRODUCT_VERSION "4.3"
!define PRODUCT_VERSION "4.3.1"
!define PRODUCT_PUBLISHER "frePPLe"
!define PRODUCT_WEB_SITE "http://frepple.com"
!define PRODUCT_DIR_REGKEY "Software\Microsoft\Windows\CurrentVersion\App Paths\frepple.exe"
Expand Down Expand Up @@ -92,8 +92,8 @@ Page custom FinishOpen FinishLeave
!insertmacro MUI_LANGUAGE "TradChinese"

;Version Information
VIProductVersion "4.3.0.0"
VIAddVersionKey /LANG=${LANG_ENGLISH} FileVersion "4.3.0.0"
VIProductVersion "4.3.1.0"
VIAddVersionKey /LANG=${LANG_ENGLISH} FileVersion "4.3.1.0"
VIAddVersionKey /LANG=${LANG_ENGLISH} ProductName "frePPLe community edition installer"
VIAddVersionKey /LANG=${LANG_ENGLISH} Comments "frePPLe community edition installer"
VIAddVersionKey /LANG=${LANG_ENGLISH} CompanyName "frePPLe"
Expand Down
2 changes: 1 addition & 1 deletion contrib/rpm/frepple.spec
Expand Up @@ -16,7 +16,7 @@
#
Summary: Free Production PLanning
Name: frepple
Version: 4.3
Version: 4.3.1
Release: 1%{?dist}
License: AGPLv3+
Group: Applications/Productivity
Expand Down
4 changes: 2 additions & 2 deletions doc/conf.py
Expand Up @@ -52,9 +52,9 @@
# built documents.
#
# The short X.Y version.
version = "4.3"
version = "4.3.1"
# The full version, including alpha/beta/rc tags.
release = "4.3"
release = "4.3.1"

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion freppledb/__init__.py
@@ -1,4 +1,4 @@
r'''
A Django project implementing a web-based user interface for frePPLe.
'''
VERSION = '4.3'
VERSION = '4.3.1'
2 changes: 1 addition & 1 deletion freppledb/locale/es/LC_MESSAGES/django.po
Expand Up @@ -11,7 +11,7 @@
# License along with this program. If not, see <http://www.gnu.org/licenses/>.
msgid ""
msgstr ""
"Project-Id-Version: 4.3\n"
"Project-Id-Version: 4.3.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-26 21:44+0100\n"
"PO-Revision-Date: 2017-12-26 22:17+0100\n"
Expand Down
2 changes: 1 addition & 1 deletion freppledb/locale/es/LC_MESSAGES/djangojs.po
Expand Up @@ -11,7 +11,7 @@
# License along with this program. If not, see <http://www.gnu.org/licenses/>.
msgid ""
msgstr ""
"Project-Id-Version: 4.3\n"
"Project-Id-Version: 4.3.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-26 21:44+0100\n"
"PO-Revision-Date: 2017-12-26 22:05+0100\n"
Expand Down
2 changes: 1 addition & 1 deletion freppledb/locale/fr/LC_MESSAGES/django.po
Expand Up @@ -11,7 +11,7 @@
# License along with this program. If not, see <http://www.gnu.org/licenses/>.
msgid ""
msgstr ""
"Project-Id-Version: 4.3\n"
"Project-Id-Version: 4.3.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-26 21:44+0100\n"
"PO-Revision-Date: 2018-01-03 19:37+0100\n"
Expand Down
2 changes: 1 addition & 1 deletion freppledb/locale/fr/LC_MESSAGES/djangojs.po
Expand Up @@ -11,7 +11,7 @@
# License along with this program. If not, see <http://www.gnu.org/licenses/>.
msgid ""
msgstr ""
"Project-Id-Version: 4.3\n"
"Project-Id-Version: 4.3.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-26 21:44+0100\n"
"PO-Revision-Date: 2018-01-03 19:44+0100\n"
Expand Down
2 changes: 1 addition & 1 deletion freppledb/locale/it/LC_MESSAGES/django.po
Expand Up @@ -11,7 +11,7 @@
# License along with this program. If not, see <http://www.gnu.org/licenses/>.
msgid ""
msgstr ""
"Project-Id-Version: 4.3\n"
"Project-Id-Version: 4.3.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-26 21:44+0100\n"
"PO-Revision-Date: 2017-12-26 22:39+0100\n"
Expand Down
2 changes: 1 addition & 1 deletion freppledb/locale/it/LC_MESSAGES/djangojs.po
Expand Up @@ -12,7 +12,7 @@
# Joao Ranita <jranita@frepple.com>, 2015, 2016.
msgid ""
msgstr ""
"Project-Id-Version: 4.3\n"
"Project-Id-Version: 4.3.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-26 21:44+0100\n"
"PO-Revision-Date: 2017-12-26 22:18+0100\n"
Expand Down
2 changes: 1 addition & 1 deletion freppledb/locale/ja/LC_MESSAGES/django.po
Expand Up @@ -12,7 +12,7 @@
# Joao Ranita <jranita@frepple.com>, 2016.
msgid ""
msgstr ""
"Project-Id-Version: 4.3\n"
"Project-Id-Version: 4.3.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-26 21:44+0100\n"
"PO-Revision-Date: 2017-12-26 22:46+0100\n"
Expand Down
2 changes: 1 addition & 1 deletion freppledb/locale/ja/LC_MESSAGES/djangojs.po
Expand Up @@ -11,7 +11,7 @@
# License along with this program. If not, see <http://www.gnu.org/licenses/>.
msgid ""
msgstr ""
"Project-Id-Version: 4.3\n"
"Project-Id-Version: 4.3.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-26 21:44+0100\n"
"PO-Revision-Date: 2017-12-26 22:18+0100\n"
Expand Down
2 changes: 1 addition & 1 deletion freppledb/locale/nl/LC_MESSAGES/django.po
Expand Up @@ -11,7 +11,7 @@
# License along with this program. If not, see <http://www.gnu.org/licenses/>.
msgid ""
msgstr ""
"Project-Id-Version: 4.3\n"
"Project-Id-Version: 4.3.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-26 21:44+0100\n"
"PO-Revision-Date: 2017-12-26 21:46+0100\n"
Expand Down
2 changes: 1 addition & 1 deletion freppledb/locale/nl/LC_MESSAGES/djangojs.po
Expand Up @@ -11,7 +11,7 @@
# License along with this program. If not, see <http://www.gnu.org/licenses/>.
msgid ""
msgstr ""
"Project-Id-Version: 4.3\n"
"Project-Id-Version: 4.3.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-26 21:44+0100\n"
"PO-Revision-Date: 2017-12-26 13:54+0100\n"
Expand Down
2 changes: 1 addition & 1 deletion freppledb/locale/pt_BR/LC_MESSAGES/django.po
Expand Up @@ -11,7 +11,7 @@
# License along with this program. If not, see <http://www.gnu.org/licenses/>.
msgid ""
msgstr ""
"Project-Id-Version: 4.3\n"
"Project-Id-Version: 4.3.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-26 21:44+0100\n"
"PO-Revision-Date: 2017-12-26 22:53+0100\n"
Expand Down
2 changes: 1 addition & 1 deletion freppledb/locale/pt_BR/LC_MESSAGES/djangojs.po
Expand Up @@ -11,7 +11,7 @@
# License along with this program. If not, see <http://www.gnu.org/licenses/>.
msgid ""
msgstr ""
"Project-Id-Version: 4.3\n"
"Project-Id-Version: 4.3.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-26 21:44+0100\n"
"PO-Revision-Date: 2017-12-26 22:18+0100\n"
Expand Down
2 changes: 1 addition & 1 deletion freppledb/locale/pt_PT/LC_MESSAGES/django.po
Expand Up @@ -11,7 +11,7 @@
# License along with this program. If not, see <http://www.gnu.org/licenses/>.
msgid ""
msgstr ""
"Project-Id-Version: 4.3\n"
"Project-Id-Version: 4.3.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-26 21:44+0100\n"
"PO-Revision-Date: 2017-12-26 22:57+0100\n"
Expand Down
2 changes: 1 addition & 1 deletion freppledb/locale/pt_PT/LC_MESSAGES/djangojs.po
Expand Up @@ -11,7 +11,7 @@
# License along with this program. If not, see <http://www.gnu.org/licenses/>.
msgid ""
msgstr ""
"Project-Id-Version: 4.3\n"
"Project-Id-Version: 4.3.1\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-12-26 21:44+0100\n"
"PO-Revision-Date: 2017-12-26 22:18+0100\n"
Expand Down
2 changes: 1 addition & 1 deletion include/frepple/utils.h
Expand Up @@ -139,7 +139,7 @@ using namespace std;
#include <config.h>
#else
// Define the version for (windows) compilers that don't use autoconf
#define PACKAGE_VERSION "4.3"
#define PACKAGE_VERSION "4.3.1"
#endif

// Header for multithreading
Expand Down
8 changes: 4 additions & 4 deletions src/dll.rc
Expand Up @@ -24,8 +24,8 @@
LANGUAGE LANG_ENGLISH, SUBLANG_ENGLISH_US

VS_VERSION_INFO VERSIONINFO
FILEVERSION 4,3,0,0
PRODUCTVERSION 4,3,0,0
FILEVERSION 4,3,1,0
PRODUCTVERSION 4,3,1,0
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -43,13 +43,13 @@ BEGIN
VALUE "CompanyName", "frePPLe"
VALUE "FileDescription",
"frePPLe - open source Production PLanning"
VALUE "FileVersion", "4, 3, 0, 0"
VALUE "FileVersion", "4, 3, 1, 0"
VALUE "InternalName", "frepple.dll"
VALUE "LegalCopyright",
"Licensed under AGPL - Affero General Public License"
VALUE "OriginalFilename", "frepple.dll"
VALUE "ProductName", " frePPLe"
VALUE "ProductVersion", "4, 3, 0, 0"
VALUE "ProductVersion", "4, 3, 1, 0"
END
END
BLOCK "VarFileInfo"
Expand Down
8 changes: 4 additions & 4 deletions src/exe.rc
Expand Up @@ -28,8 +28,8 @@ IDI_ICON ICON "frepple.ico"

// Version
VS_VERSION_INFO VERSIONINFO
FILEVERSION 4,3,0,0
PRODUCTVERSION 4,3,0,0
FILEVERSION 4,3,1,0
PRODUCTVERSION 4,3,1,0
FILEFLAGSMASK 0x17L
#ifdef _DEBUG
FILEFLAGS 0x1L
Expand All @@ -47,13 +47,13 @@ BEGIN
VALUE "CompanyName", "frePPLe"
VALUE "FileDescription",
"frePPLe - open source Production PLanning"
VALUE "FileVersion", "4, 3, 0, 0"
VALUE "FileVersion", "4, 3, 1, 0"
VALUE "InternalName", "frepple.exe"
VALUE "LegalCopyright",
"Licensed under AGPL - Affero General Public License"
VALUE "OriginalFilename", "frepple.exe"
VALUE "ProductName", "frePPLe"
VALUE "ProductVersion", "4, 3, 0, 0"
VALUE "ProductVersion", "4, 3, 1, 0"
END
END
BLOCK "VarFileInfo"
Expand Down

0 comments on commit 8b85c96

Please sign in to comment.