aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKristian Evers <kristianevers@gmail.com>2018-03-21 16:03:08 +0100
committerKristian Evers <kristianevers@gmail.com>2018-03-21 16:17:35 +0100
commit5ad2227c56b87a4237089511e9b3e7b49b4d80ab (patch)
treee4694fac54f805289ad0ffe25be9e376550734d3
parent8d7d07544df4543adf733a20061c3b9423cdb1c2 (diff)
downloadPROJ-5ad2227c56b87a4237089511e9b3e7b49b4d80ab.tar.gz
PROJ-5ad2227c56b87a4237089511e9b3e7b49b4d80ab.zip
Bump version numbers
-rw-r--r--CMakeLists.txt2
-rw-r--r--configure.ac2
-rw-r--r--docs/source/conf.py4
-rw-r--r--proj.spec8
-rw-r--r--src/Makefile.am2
-rw-r--r--src/pj_release.c2
-rw-r--r--src/proj.h2
-rw-r--r--src/proj_api.h2
8 files changed, 12 insertions, 12 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 02de6a81..6c43ab92 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -63,7 +63,7 @@ colormsg(_HIBLUE_ "Configuring PROJ:")
include(Proj4Version)
proj_version(MAJOR 5 MINOR 0 PATCH 0)
set(PROJ_API_VERSION "13")
-set(PROJ_BUILD_VERSION "13.0.1")
+set(PROJ_BUILD_VERSION "13.1.0")
#################################################################################
# Build features and variants
diff --git a/configure.ac b/configure.ac
index 66da9d13..8bc39b25 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,7 +1,7 @@
dnl Process this file with autoconf to produce a configure script.
AC_PREREQ(2.59)
-AC_INIT([PROJ.4 Projections], 5.0.0, [https://github.com/OSGeo/proj.4/issues], proj)
+AC_INIT([PROJ.4 Projections], 5.0.1, [https://github.com/OSGeo/proj.4/issues], proj)
AC_CONFIG_MACRO_DIR([m4])
AC_LANG(C)
diff --git a/docs/source/conf.py b/docs/source/conf.py
index af9d24da..ff11e3b4 100644
--- a/docs/source/conf.py
+++ b/docs/source/conf.py
@@ -58,9 +58,9 @@ author = u'Gerald Evenden, Frank Warmerdam, and others'
# built documents.
#
# The short X.Y version.
-version = u'5.0.0'
+version = u'5.0.1'
# The full version, including alpha/beta/rc tags.
-release = u'5.0.0'
+release = u'5.0.1'
# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
diff --git a/proj.spec b/proj.spec
index b0854077..9e459d3f 100644
--- a/proj.spec
+++ b/proj.spec
@@ -1,5 +1,5 @@
%define PACKAGE_NAME proj
-%define PACKAGE_VERSION 5.0.0
+%define PACKAGE_VERSION 5.0.1
%define PACKAGE_URL http://proj4.org
%define _prefix /usr
@@ -7,7 +7,7 @@ Summary: Cartographic projection and geodetic transformation software
Name: %PACKAGE_NAME
Version: %PACKAGE_VERSION
Release: 1
-Source0: proj-5.0.0.tar.gz
+Source0: proj-5.0.1.tar.gz
License: MIT, Copyright (c) 2000, Frank Warmerdam
Group: Applications/GIS
Vendor: Intevation GmbH <http://intevation.net>
@@ -24,7 +24,7 @@ coordinates from one coordinate reference system (CRS) to another. This
includes cartographic projections as well as geodetic transformations.
%prep
-%setup -D -n proj-5.0.0
+%setup -D -n proj-5.0.1
%{_builddir}/%{name}-%{version}/autogen.sh
%configure
@@ -36,7 +36,7 @@ rm -rf $RPM_BUILD_ROOT
%makeinstall
%clean
-rm -rf %{_builddir}/proj-5.0.0
+rm -rf %{_builddir}/proj-5.0.1
rm -rf $RPM_BUILD_ROOT
%files
diff --git a/src/Makefile.am b/src/Makefile.am
index f94e5f26..2866819b 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -40,7 +40,7 @@ geodtest_LDADD = libproj.la
lib_LTLIBRARIES = libproj.la
-libproj_la_LDFLAGS = -no-undefined -version-info 13:0:0
+libproj_la_LDFLAGS = -no-undefined -version-info 13:1:0
libproj_la_SOURCES = \
pj_list.h proj_internal.h\
diff --git a/src/pj_release.c b/src/pj_release.c
index 9545aad2..226b3cc1 100644
--- a/src/pj_release.c
+++ b/src/pj_release.c
@@ -11,7 +11,7 @@ char const pj_release[] =
STR(PROJ_VERSION_MAJOR)"."
STR(PROJ_VERSION_MINOR)"."
STR(PROJ_VERSION_PATCH)", "
- "March 1st, 2018";
+ "April 1st, 2018";
const char *pj_get_release() {
return pj_release;
diff --git a/src/proj.h b/src/proj.h
index 4da78351..9a493742 100644
--- a/src/proj.h
+++ b/src/proj.h
@@ -132,7 +132,7 @@ extern "C" {
/* The version numbers should be updated with every release! **/
#define PROJ_VERSION_MAJOR 5
#define PROJ_VERSION_MINOR 0
-#define PROJ_VERSION_PATCH 0
+#define PROJ_VERSION_PATCH 1
extern char const pj_release[]; /* global release id string */
diff --git a/src/proj_api.h b/src/proj_api.h
index 5bba5887..cc4d611a 100644
--- a/src/proj_api.h
+++ b/src/proj_api.h
@@ -33,7 +33,7 @@
*
*/
#ifndef PJ_VERSION
- #define PJ_VERSION 500
+ #define PJ_VERSION 501
#endif