Skip to content

Commit

Permalink
feat: 0.4.0 Add ARR macro definitions, refactor old macros not to tak…
Browse files Browse the repository at this point in the history
…e count arg (#63)

* feat: add const default conf for KLS_BASIC reglist

* feat: refactor core macros functions

* fix: use README as docs index

* chore: update docs

* chore: update example in README

* chore: update actions/checkout to v4

* feat: add kls_reglist_backend_string()

* feat: add kls_reglist_backend_strings[]

* feat: bump amboso to 2.0.3
  • Loading branch information
jgabaut authored Feb 5, 2024
1 parent 3063ab9 commit ccee0be
Show file tree
Hide file tree
Showing 24 changed files with 400 additions and 200 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/make-anviltest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Run sudo apt update
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/makefile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4
with:
submodules: recursive
- name: Run aclocal
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ int main(void)
Koliseo* kls = kls_new(KLS_DEFAULT_SIZE);

//Use the arena (see demo for Koliseo_Temp usage)
Example* e = KLS_PUSH(kls,Example,1);
Example* e = KLS_PUSH(kls, Example);
e->val = 42;

//Show contents to stdout
Expand Down Expand Up @@ -127,4 +127,4 @@ int main(void)

## Todo <a name = "todo"></a>

- Add target to build `.dll` for `Windows`
- Break up internal extensions to the core functionality
57 changes: 0 additions & 57 deletions bin/stego.lock

This file was deleted.

1 change: 1 addition & 0 deletions bin/stego.lock
4 changes: 4 additions & 0 deletions bin/v0.4.0/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
#amboso compliant version folder, will ignore everything inside BUT the gitignore, to keep the clean dir
*
!.gitignore
!static
1 change: 1 addition & 0 deletions bin/v0.4.0/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([koliseo], [0.3.20], [[email protected]])
AC_INIT([koliseo], [0.4.0], [[email protected]])

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

# Output variables to the config.h header
Expand Down
Loading

0 comments on commit ccee0be

Please sign in to comment.