Skip to content

Commit

Permalink
release Crispy Doom 6.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
fabiangreffrath committed Mar 31, 2023
1 parent 99b5190 commit 355ee30
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake")

cmake_minimum_required(VERSION 3.7.2)
project("Crispy Doom" VERSION 5.12.0 LANGUAGES C)
project("Crispy Doom" VERSION 6.0.0 LANGUAGES C)

# Autotools variables
set(top_srcdir ${CMAKE_CURRENT_SOURCE_DIR})
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
AC_INIT(Crispy Doom, 5.12.0,
AC_INIT(Crispy Doom, 6.0.0,
fabian@greffrath.com, crispy-doom)

PACKAGE_SHORTNAME=${PACKAGE_NAME% Doom}
Expand Down

2 comments on commit 355ee30

@fabiangreffrath
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have uploaded a tag. Shouldn't this trigger a release build? @rfomin

@rfomin
Copy link
Collaborator

@rfomin rfomin commented on 355ee30 Mar 31, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I have uploaded a tag. Shouldn't this trigger a release build? @rfomin

I forgot to add tags trigger:

diff --git a/.github/workflows/msys2.yml b/.github/workflows/msys2.yml
index 83cec801..166ce05d 100644
--- a/.github/workflows/msys2.yml
+++ b/.github/workflows/msys2.yml
@@ -4,6 +4,8 @@ on:
   push:
     branches:
       - "master"
+    tags:
+      - "*"
     paths-ignore:
       - "**.md"
   pull_request:

Sorry about that. It seems possible to remove the remote tag and push it again.

Please sign in to comment.