mirror of
https://github.com/theoludwig/libcproject.git
synced 2024-11-08 22:31:31 +01:00
chore: update @since
version
This commit is contained in:
parent
06b34b115b
commit
3220c0e26b
2
.github/workflows/ci.yml
vendored
2
.github/workflows/ci.yml
vendored
@ -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'
|
||||
|
||||
|
13
.github/workflows/release.yml
vendored
13
.github/workflows/release.yml
vendored
@ -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'
|
||||
|
||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -6,3 +6,5 @@ documentation
|
||||
*.o
|
||||
*.a
|
||||
node_modules
|
||||
package.json
|
||||
package-lock.json
|
||||
|
@ -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);
|
||||
|
||||
|
@ -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);
|
||||
|
||||
|
@ -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);
|
||||
|
||||
|
@ -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);
|
||||
|
||||
|
@ -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);
|
||||
|
||||
|
@ -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*));
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user