Skip to content

Commit

Permalink
Updated version number in configuration files and adapted branches fo…
Browse files Browse the repository at this point in the history
…r CI.
  • Loading branch information
gittiver committed Jan 8, 2025
1 parent 77eda0d commit c8f4380
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 9 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/build_and_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,7 @@ name: Build and test

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
branches: [ "v1.2.1" ]

env:
BUILD_TYPE: Release
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/doxygen-gh-pages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ name: Deploy Doxygen results to Github Pages
#on: push
on:
push:
branches:
- master
branches: [ "v1.2.1" ]

permissions:
contents: write
Expand Down Expand Up @@ -36,4 +35,4 @@ jobs:
- name: run mike (Deploy 🚀)
run: |
git fetch origin gh-pages --depth=1
mike deploy master --push
mike deploy 1.2.1 --push
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ cmake_minimum_required(VERSION 3.15.0 FATAL_ERROR)
# Define the project name and language
project(Crow
LANGUAGES CXX
VERSION 1.1.1
VERSION 1.2.1
)

# Make sure Findasio.cmake module is found
Expand Down
2 changes: 1 addition & 1 deletion Doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PROJECT_NAME = Crow
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 1.1
PROJECT_NUMBER = 1.2.1

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
1 change: 1 addition & 0 deletions docs/versions.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[
{"version": "master", "title": "master", "aliases": []},
{"version": "1.2.1", "title": "1.2.1", "aliases": []},
{"version": "1.2", "title": "1.2.0", "aliases": []},
{"version": "1.1", "title": "1.1.0", "aliases": []},
{"version": "1.0", "title": "1.0+3", "aliases": []},
Expand Down
2 changes: 1 addition & 1 deletion include/crow/version.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@

namespace crow
{
constexpr const char VERSION[] = "master";
constexpr const char VERSION[] = "1.2.1";
}

0 comments on commit c8f4380

Please sign in to comment.