Skip to content

Commit 537b44d

Browse files
committed
updated version strings
1 parent 6fc6a54 commit 537b44d

File tree

7 files changed

+23
-17
lines changed

7 files changed

+23
-17
lines changed

‎.github/workflows/build_and_test.yml‎

Lines changed: 15 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,14 @@ name: Build and test
22

33
on:
44
push:
5-
branches: [ "master" ]
6-
tags:
7-
- "v*"
8-
pull_request:
9-
branches: [ "master" ]
5+
branches: [ "v1.3" ]
106

117
env:
128
BUILD_TYPE: Release
139
COVERALLS_PULL_REQUEST: ${{ github.event.number }}
10+
GIT_REF: ${{github.ref}}
11+
GIT_EVENT_REF: ${{github.event.ref}}
12+
GIT_EVENT_TYPE: ${{github.event.type}}
1413

1514
jobs:
1615
build:
@@ -32,6 +31,12 @@ jobs:
3231
- { os: windows-latest, compiler: msvc, cxx_stdlib: msvc }
3332

3433
steps:
34+
- name: Output Infos
35+
run: |
36+
echo $GIT_REF
37+
echo $GIT_EVENT_REF
38+
echo $GIT_EVENT_TYPE
39+
3540
- uses: actions/checkout@v5
3641
- name: Prepare dependencies
3742
run: |
@@ -116,11 +121,12 @@ jobs:
116121
shell: bash
117122

118123
- name: Generate coverage report
119-
if: matrix.os == 'ubuntu-latest' && matrix.compiler == 'gcc' && matrix.cxx_stdlib == 'libstdc++' && matrix.asio_type == 'boost' && !startsWith(github.ref, 'refs/tags/v')
124+
if: matrix.os == 'ubuntu-latest' && matrix.compiler == 'gcc' && matrix.cxx_stdlib == 'libstdc++' && matrix.asio_type == 'boost' && !startsWith(github.ref, 'refs/heads/v')
120125
run: |
121126
export CI_BRANCH=${GITHUB_BASE_REF:-${GITHUB_REF#refs/heads/}}
122127
echo "CI_BRANCH=$CI_BRANCH" >> $GITHUB_ENV && \
123128
export TRAVIS_JOB_ID=$GITHUB_RUN_NUMBER && \
129+
echo gitref= {{github.ref}} && \
124130
git clone https://github.com/CrowCpp/cpp-coveralls.git && \
125131
cd cpp-coveralls && \
126132
pip3 install . --no-input && \
@@ -130,7 +136,7 @@ jobs:
130136

131137
- name: Save report
132138
uses: actions/upload-artifact@v4
133-
if: matrix.os == 'ubuntu-latest' && matrix.compiler == 'gcc' && matrix.cxx_stdlib == 'libstdc++' && matrix.asio_type == 'boost' && !startsWith(github.ref, 'refs/tags/v')
139+
if: matrix.os == 'ubuntu-latest' && matrix.compiler == 'gcc' && matrix.cxx_stdlib == 'libstdc++' && matrix.asio_type == 'boost' && !startsWith(github.ref, 'refs/heads/v')
134140
with:
135141
name: coveralls.json
136142
path: coveralls.json
@@ -140,7 +146,7 @@ jobs:
140146
run: cmake --build . --target package
141147

142148
- name: Generate checksums
143-
if: matrix.os == 'ubuntu-latest' && matrix.compiler == 'gcc' && matrix.cxx_stdlib == 'libstdc++' && matrix.asio_type == 'boost' && startsWith(github.ref, 'refs/tags/v')
149+
if: matrix.os == 'ubuntu-latest' && matrix.compiler == 'gcc' && matrix.cxx_stdlib == 'libstdc++' && matrix.asio_type == 'boost' && startsWith(github.ref, 'refs/heads/v')
144150
working-directory: ${{github.workspace}}/build
145151
run: |
146152
for f in Crow-* crow_all.h; do
@@ -150,7 +156,7 @@ jobs:
150156
done
151157
152158
- uses: actions/upload-artifact@v4
153-
if: matrix.os == 'ubuntu-latest' && matrix.compiler == 'gcc' && matrix.cxx_stdlib == 'libstdc++' && matrix.asio_type == 'boost' && startsWith(github.ref, 'refs/tags/v')
159+
if: matrix.os == 'ubuntu-latest' && matrix.compiler == 'gcc' && matrix.cxx_stdlib == 'libstdc++' && matrix.asio_type == 'boost' && startsWith(github.ref, 'refs/heads/v')
154160
with:
155161
name: packages
156162
path: |

‎.github/workflows/doxygen-gh-pages.yml‎

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@ name: Deploy Doxygen results to Github Pages
33
#on: push
44
on:
55
push:
6-
branches:
7-
- master
6+
branches: [ v1.3" ]
87

98
permissions:
109
contents: write
@@ -36,4 +35,4 @@ jobs:
3635
- name: run mike (Deploy 🚀)
3736
run: |
3837
git fetch origin gh-pages --depth=1
39-
mike deploy master --push
38+
mike deploy 1.3.0 --push

‎CMakeLists.txt‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.15.0 FATAL_ERROR)
66
# Define the project name and language
77
project(Crow
88
LANGUAGES CXX
9-
VERSION 1.1.1
9+
VERSION 1.3.0
1010
)
1111

1212
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)

‎Doxyfile‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ PROJECT_NAME = Crow
4848
# could be handy for archiving the generated documentation or if some version
4949
# control system is used.
5050

51-
PROJECT_NUMBER = 1.1
51+
PROJECT_NUMBER = 1.3.0
5252

5353
# Using the PROJECT_BRIEF tag one can provide an optional one line description
5454
# for a project that appears at the top of each page and should give viewer a

‎docs/versions.json‎

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
[
22
{"version": "master", "title": "master", "aliases": []},
3-
{"version": "1.2", "title": "1.2.0", "aliases": []},
3+
{"version": "1.3", "title": "1.3.0", "aliases": []},
4+
{"version": "1.2", "title": "1.2.1", "aliases": []},
45
{"version": "1.1", "title": "1.1.0", "aliases": []},
56
{"version": "1.0", "title": "1.0+3", "aliases": []},
67
{"version": "0.3", "title": "0.3+4", "aliases": []}

‎mkdocs.yml‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,4 +109,4 @@ extra_css:
109109
- 'stylesheets/latofonts.css'
110110
- 'stylesheets/extra.css'
111111

112-
copyright: 'Copyright © 2020-2023 CrowCpp'
112+
copyright: 'Copyright © 2020-2025 CrowCpp'

‎vcpkg.json‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "crow",
3-
"version-string": "master",
3+
"version-string": "1.3.0",
44
"dependencies": [
55
"asio",
66
"openssl",

0 commit comments

Comments
 (0)