Skip to content

Commit

Permalink
chore: update @SInCE version
Browse files Browse the repository at this point in the history
  • Loading branch information
theoludwig committed Aug 5, 2023
1 parent 06b34b1 commit f12cb97
Show file tree
Hide file tree
Showing 9 changed files with 19 additions and 10 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ jobs:
steps:
- uses: 'actions/checkout@v3.5.3'

- run: 'sudo apt update'

- name: 'Install Build Tools'
run: 'sudo apt-get install --yes build-essential gcc make clang-format'

Expand Down
13 changes: 9 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,18 +21,23 @@ jobs:
git_user_signingkey: true
git_commit_gpgsign: true

- run: 'sudo apt update'

- name: 'Install Build Tools'
run: 'sudo apt-get install --yes build-essential gcc make clang-format doxygen doxygen-gui doxygen-doc graphviz'
run: 'sudo apt-get install --yes build-essential gcc make clang-format'

- name: 'Install Documentation Tools'
run: 'sudo apt-get install --yes doxygen doxygen-gui doxygen-doc graphviz'

- run: 'make set_version'

- name: 'Use Node.js'
uses: 'actions/setup-node@v3.6.0'
uses: 'actions/setup-node@v3.7.0'
with:
node-version: '18.16.1'
node-version: '18.17.0'

- name: 'Install Release Tools'
run: 'npm install --save-dev semantic-release@21.0.5 @commitlint/cli@17.6.6 @commitlint/config-conventional@17.6.6 @semantic-release/git@10.0.1 @semantic-release/exec@6.0.3 @saithodev/semantic-release-backmerge@3.2.0 vercel@30.2.3'
run: 'npm install --save-dev semantic-release@21.0.7 @commitlint/cli@17.6.7 @commitlint/config-conventional@17.6.7 @semantic-release/git@10.0.1 @semantic-release/exec@6.0.3 @saithodev/semantic-release-backmerge@3.2.0 vercel@31.2.2'

- run: 'rm --force package.json package-lock.json'

Expand Down
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,5 @@ documentation
*.o
*.a
node_modules
package.json
package-lock.json
2 changes: 1 addition & 1 deletion lib/array_list.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ void* array_list_get(struct array_list* list, size_t index);

/**
* @brief Frees the array list.
* @since v2.1.0
* @since v3.0.0
*/
void array_list_free(struct array_list* list);

Expand Down
2 changes: 1 addition & 1 deletion lib/hash_map.h
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ string_t *hash_map_get_keys(struct hash_map *hash_map);

/**
* @brief Frees the hash map.
* @since v2.1.0
* @since v3.0.0
*/
void hash_map_free(struct hash_map *hash_map);

Expand Down
2 changes: 1 addition & 1 deletion lib/linked_list.h
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ void linked_list_reverse_mutate(struct linked_list *list);

/**
* @brief Frees the linked list.
* @since v2.1.0
* @since v3.0.0
*/
void linked_list_free(struct linked_list *list);

Expand Down
2 changes: 1 addition & 1 deletion lib/queue.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ void *queue_pop(struct queue *queue);

/**
* @brief Frees the queue.
* @since v2.1.0
* @since v3.0.0
*/
void queue_free(struct queue *queue);

Expand Down
2 changes: 1 addition & 1 deletion lib/stack.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ void *stack_pop(struct stack *stack);

/**
* @brief Frees the stack.
* @since v2.1.0
* @since v3.0.0
*/
void stack_free(struct stack *stack);

Expand Down
2 changes: 1 addition & 1 deletion lib/terminal.h
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ void terminal_print_hash_map(struct hash_map* hash_map, void (*print_element)(vo
*
* @param array_list
* @param print_element
* @since v2.1.0
* @since v3.0.0
*/
void terminal_print_array_list(struct array_list* list, void (*print_element)(void*));

Expand Down

0 comments on commit f12cb97

Please sign in to comment.