Skip to content

Commit 94a011b

Browse files
committedMay 28, 2024·
set version to 1.2 and build to build on branch only
1 parent 3d6a190 commit 94a011b

File tree

4 files changed

+5
-9
lines changed

4 files changed

+5
-9
lines changed
 

‎.github/workflows/build_and_test.yml

+1-4
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
name: Build and test
22

3-
#on: push
43
on:
54
push:
6-
branches: [ "master" ]
7-
pull_request:
8-
branches: [ "master" ]
5+
branches: [ "v1.2" ]
96

107
env:
118
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)

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

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
name: Deploy Doxygen results to Github Pages
22

3-
#on: push
43
on:
54
push:
6-
branches:
7-
- master
5+
branches: [ "v1.2" ]
86

97
permissions:
108
contents: write
@@ -36,4 +34,4 @@ jobs:
3634
- name: run mike (Deploy 🚀)
3735
run: |
3836
git fetch origin gh-pages --depth=1
39-
mike deploy master --push
37+
mike deploy 1.2 --push

‎CMakeLists.txt

+1-1
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.2.0
1010
)
1111

1212
# Make sure Findasio.cmake module is found

‎docs/versions.json

+1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
[
22
{"version": "master", "title": "master", "aliases": []},
3+
{"version": "1.2", "title": "1.2.0", "aliases": []},
34
{"version": "1.1", "title": "1.1.0", "aliases": []},
45
{"version": "1.0", "title": "1.0+3", "aliases": []},
56
{"version": "0.3", "title": "0.3+4", "aliases": []}

0 commit comments

Comments
 (0)