Skip to content

Commit cf9c792

Browse files
authored
Merge pull request #2764 from cvvergara/pumpup-to-3.8.0
Pumpup to 3.8.0
2 parents 90ddfc7 + 68eb5a4 commit cf9c792

File tree

60 files changed

+2194
-2883
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+2194
-2883
lines changed

.github/workflows/boost_version.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,5 +131,5 @@ jobs:
131131
sudo service postgresql start
132132
psql -c "CREATE DATABASE ___pgr___test___;"
133133
DIR=$(git rev-parse --show-toplevel)
134-
bash "${DIR}/tools/testers/setup_db.sh" "${PGPORT}" ___pgr___test___ "${PG_RUNNER_USER}" "3.7.3"
134+
bash "${DIR}/tools/testers/setup_db.sh" "${PGPORT}" ___pgr___test___ "${PG_RUNNER_USER}" "3.8.0"
135135
pg_prove -Q -f --normalize --directives --recurse -U "${PG_RUNNER_USER}" -d ___pgr___test___ "pgtap"

.github/workflows/update-locale.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,12 @@ name: Update Locale
88
on:
99
workflow_dispatch:
1010
push:
11-
branches:
12-
- 'develop'
11+
paths:
12+
- '.github/workflows/update-locale.yml'
13+
- 'doc/**'
14+
15+
branches-ignore:
16+
- 'gh-pages'
1317

1418
permissions:
1519
contents: read
@@ -20,7 +24,6 @@ jobs:
2024
contents: write # for Git to git push
2125
name: Update Locale
2226
runs-on: ubuntu-latest
23-
if: ${{ github.repository_owner == 'pgRouting' }}
2427

2528
strategy:
2629
fail-fast: false

.github/workflows/update.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
fail-fast: false
3030
matrix:
3131
boost_minor: [56]
32-
old_pgr: [3.7.2, 3.7.1, 3.7.0, 3.6.3, 3.6.2, 3.6.1, 3.6.0, 3.5.1, 3.5.0, 3.4.2, 3.4.1, 3.4.0, 3.3.5, 3.3.4, 3.3.3, 3.3.2, 3.3.1, 3.3.0, 3.0.0, 3.0.1, 3.0.2, 3.0.3, 3.0.4, 3.0.6, 3.1.0, 3.1.1, 3.1.2, 3.1.3, 3.2.0, 3.2.1, 3.2.2]
32+
old_pgr: [3.7.3, 3.7.2, 3.7.1, 3.7.0, 3.6.3, 3.6.2, 3.6.1, 3.6.0, 3.5.1, 3.5.0, 3.4.2, 3.4.1, 3.4.0, 3.3.5, 3.3.4, 3.3.3, 3.3.2, 3.3.1, 3.3.0, 3.0.0, 3.0.1, 3.0.2, 3.0.3, 3.0.4, 3.0.6, 3.1.0, 3.1.1, 3.1.2, 3.1.3, 3.2.0, 3.2.1, 3.2.2]
3333

3434
steps:
3535
- uses: actions/checkout@v4
@@ -126,6 +126,6 @@ jobs:
126126
run: |
127127
sudo service postgresql start
128128
psql -p "${PGPORT}" -d ___pgr___test___ -c "SELECT * FROM pgr_full_version();"
129-
psql -p "${PGPORT}" -d ___pgr___test___ -c "ALTER EXTENSION pgrouting UPDATE TO '3.7.3';"
129+
psql -p "${PGPORT}" -d ___pgr___test___ -c "ALTER EXTENSION pgrouting UPDATE TO '3.8.0';"
130130
psql -p "${PGPORT}" -d ___pgr___test___ -c "SELECT * FROM pgr_full_version();"
131131
pg_prove -Q -f --normalize --directives --recurse -U "${PG_RUNNER_USER}" -d ___pgr___test___ "pgtap"

CMakeLists.txt

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ include(pgr/BuildType)
3030
#---------------------------------------------
3131
#---------------------------------------------
3232

33-
project(PGROUTING VERSION 3.7.3
33+
project(PGROUTING VERSION 3.8.0
3434
LANGUAGES C CXX )
3535
set(PROJECT_VERSION_DEV "")
3636
string(TOLOWER "${PROJECT_NAME}" PROJECT_NAME_LOWER)
@@ -43,8 +43,9 @@ set(PROJECT_LIB_NAME "${PROJECT_NAME_LOWER}-${PROJECT_LIB_VERSION}")
4343

4444
string(TIMESTAMP COMPILATION_DATE "%Y/%m/%d" UTC)
4545

46-
set(MINORS 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0 2.6)
46+
set(MINORS 3.8 3.7 3.6 3.5 3.4 3.3 3.2 3.1 3.0 2.6)
4747
set(OLD_SIGNATURES
48+
3.7.3
4849
3.7.2
4950
3.7.1
5051
3.7.0

0 commit comments

Comments
 (0)