Skip to content

Commit da5a1d5

Browse files
committed
prepare relase 2.1.1
1 parent 3f297a3 commit da5a1d5

File tree

6 files changed

+8
-6
lines changed

6 files changed

+8
-6
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11

22
cmake_minimum_required(VERSION 3.10.0)
33

4-
project(osm2pgsql VERSION 2.1.0 LANGUAGES CXX C)
4+
project(osm2pgsql VERSION 2.1.1 LANGUAGES CXX C)
55

66
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
77

CONTRIBUTING.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -213,7 +213,9 @@ the report.
213213

214214
* Decide on a new version. (See [semantic versioning](https://semver.org/).)
215215
* Update version in [CMakeLists.txt](CMakeLists.txt), look for `project` function.
216-
* Build man page (`make man`) and copy it to `man/osm2pgsql.1`.
216+
* Update man pages
217+
* Build man page: `make man`
218+
* Copy to source: `cp man/*1 ../man/`
217219
* Tag release with release notes in commit message and upload the tag to Github.
218220
* Fill out release notes on Github.
219221
* Copy Windows binaries and source tarball to osm2pgsql.org.

man/osm2pgsql-gen.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "OSM2PGSQL" "1" "2.1.0" "" ""
1+
.TH "OSM2PGSQL" "1" "2.1.1" "" ""
22
.SH NAME
33
.PP
44
osm2pgsql-gen - Generalize OpenStreetMap data - EXPERIMENTAL!

man/osm2pgsql-replication.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "OSM2PGSQL-REPLICATION" "1" "2.1.0" "" ""
1+
.TH "OSM2PGSQL-REPLICATION" "1" "2.1.1" "" ""
22
.SH NAME
33
osm2pgsql-replication \- osm2pgsql database updater
44
.SH SYNOPSIS

man/osm2pgsql.1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
.TH "OSM2PGSQL" "1" "2.1.0" "" ""
1+
.TH "OSM2PGSQL" "1" "2.1.1" "" ""
22
.SH NAME
33
.PP
44
osm2pgsql - OpenStreetMap data to PostgreSQL converter

scripts/osm2pgsql-replication

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -676,7 +676,7 @@ def get_parser():
676676
cmd.add_argument('--max-diff-size', type=int, default=500,
677677
help='Maximum data to load in MB (default: 500MB)')
678678
cmd.add_argument('--osm2pgsql-cmd', default=str(OSM2PGSQL_PATH),
679-
help=f'Path to osm2pgsql command (default: {OSM2PGSQL_PATH})')
679+
help=f'Path to osm2pgsql command')
680680
cmd.add_argument('--once', action='store_true',
681681
help='Run updates only once, even when more data is available.')
682682
cmd.add_argument('--post-processing', metavar='SCRIPT',

0 commit comments

Comments
 (0)