Skip to content

Commit

Permalink
chore: 1.3.4 bump deps (#59)
Browse files Browse the repository at this point in the history
- Bump koliseo to 0.3.18
- Bump amboso to 1.9.9
- Bump invil to 0.1.6
- Drop 1.3.3 from stego.lock
  • Loading branch information
jgabaut authored Dec 17, 2023
1 parent c2abfdf commit 12e59a5
Show file tree
Hide file tree
Showing 11 changed files with 17 additions and 11 deletions.
2 changes: 1 addition & 1 deletion amboso
2 changes: 1 addition & 1 deletion bin/stego.lock
Original file line number Diff line number Diff line change
Expand Up @@ -51,4 +51,4 @@ errortestsdir = "kulpo"
"1.3.0" = "Use std c11"
"1.3.1" = "Add Skillslot, base for OP_SKILL"
"1.3.2" = "Bump koliseo to 0.3.12, amboso to 1.9.6"
"1.3.3" = "Bump amboso to 1.9.7, add invil"
"1.3.4" = "Bump invil to 0.1.6, amboso to 1.9.9, koliseo to 0.3.18"
5 changes: 5 additions & 0 deletions bin/v1.3.4/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#amboso compliant version folder, will ignore everything inside BUT the gitignore, to keep the clean dir
#we also keep specific dependencies...
*
!.gitignore
!static
1 change: 1 addition & 0 deletions bin/v1.3.4/static
4 changes: 2 additions & 2 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Define the package name and version
AC_INIT([helapordo], [1.3.3], [[email protected]])
AC_INIT([helapordo], [1.3.4], [[email protected]])

# Verify automake version and enable foreign option
AM_INIT_AUTOMAKE([foreign -Wall])
Expand Down Expand Up @@ -48,7 +48,7 @@ fi
# Set a default version number if not specified externally
AC_ARG_VAR([VERSION], [Version number])
if test -z "$VERSION"; then
VERSION="1.3.3"
VERSION="1.3.4"
fi

# Output variables to the config.h header
Expand Down
2 changes: 1 addition & 1 deletion docs/helapordo.doxyfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ PROJECT_NAME = "helapordo"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = "1.3.3"
PROJECT_NUMBER = "1.3.4"

# 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
2 changes: 1 addition & 1 deletion invil
Submodule invil updated 10 files
+3 −0 .gitignore
+68 −1 CHANGELOG.md
+44 −5 Cargo.lock
+3 −2 Cargo.toml
+41 −12 README.md
+1 −1 kazoj/bone/vershw.k.stdout
+1,489 −0 src/core.rs
+101 −2,140 src/main.rs
+1,024 −0 src/ops.rs
+232 −0 src/utils.rs
2 changes: 1 addition & 1 deletion kazoj/bone/const.c
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ void fail(char* msg, int ex, int val) {

int main(void) {
int check = -1;
if ( ! (( check = strcmp(VERSION, "1.3.3") ) == 0)) {
if ( ! (( check = strcmp(VERSION, "1.3.4") ) == 0)) {
fail("VERSION",0,check);
};
if ( ! (HLP_MAX_INDEX == 30) ) {
Expand Down
2 changes: 1 addition & 1 deletion sprites4curses
4 changes: 2 additions & 2 deletions src/game_core.h
Original file line number Diff line number Diff line change
Expand Up @@ -161,12 +161,12 @@ extern int G_DOTUTORIAL_ON;
/**
* Current patch release.
*/
#define HELAPORDO_PATCH_VERSION 3
#define HELAPORDO_PATCH_VERSION 4

/**
* Current version string identifier, with MAJOR.MINOR.PATCH format.
*/
#define VERSION "1.3.3"
#define VERSION "1.3.4"

#define HELAPORDO_SAVEFILE_VERSION "0.1.7"

Expand Down

0 comments on commit 12e59a5

Please sign in to comment.