mirror of
				https://github.com/theoludwig/libcproject.git
				synced 2025-05-21 23:21:15 +02:00 
			
		
		
		
	chore: update @since version
				
					
				
			This commit is contained in:
		
							
								
								
									
										2
									
								
								.github/workflows/ci.yml
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.github/workflows/ci.yml
									
									
									
									
										vendored
									
									
								
							| @@ -12,6 +12,8 @@ jobs: | |||||||
|     steps: |     steps: | ||||||
|       - uses: 'actions/checkout@v3.5.3' |       - uses: 'actions/checkout@v3.5.3' | ||||||
|  |  | ||||||
|  |       - run: 'sudo apt update' | ||||||
|  |  | ||||||
|       - name: 'Install Build Tools' |       - name: 'Install Build Tools' | ||||||
|         run: 'sudo apt-get install --yes build-essential gcc make clang-format' |         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_user_signingkey: true | ||||||
|           git_commit_gpgsign: true |           git_commit_gpgsign: true | ||||||
|  |  | ||||||
|  |       - run: 'sudo apt update' | ||||||
|  |  | ||||||
|       - name: 'Install Build Tools' |       - 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' |       - run: 'make set_version' | ||||||
|  |  | ||||||
|       - name: 'Use Node.js' |       - name: 'Use Node.js' | ||||||
|         uses: 'actions/setup-node@v3.6.0' |         uses: 'actions/setup-node@v3.7.0' | ||||||
|         with: |         with: | ||||||
|           node-version: '18.16.1' |           node-version: '18.17.0' | ||||||
|  |  | ||||||
|       - name: 'Install Release Tools' |       - 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' |       - run: 'rm --force package.json package-lock.json' | ||||||
|  |  | ||||||
|   | |||||||
							
								
								
									
										2
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							
							
						
						
									
										2
									
								
								.gitignore
									
									
									
									
										vendored
									
									
								
							| @@ -6,3 +6,5 @@ documentation | |||||||
| *.o | *.o | ||||||
| *.a | *.a | ||||||
| node_modules | 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. |  * @brief Frees the array list. | ||||||
|  * @since v2.1.0 |  * @since v3.0.0 | ||||||
|  */ |  */ | ||||||
| void array_list_free(struct array_list* list); | 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. |  * @brief Frees the hash map. | ||||||
|  * @since v2.1.0 |  * @since v3.0.0 | ||||||
|  */ |  */ | ||||||
| void hash_map_free(struct hash_map *hash_map); | 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. |  * @brief Frees the linked list. | ||||||
|  * @since v2.1.0 |  * @since v3.0.0 | ||||||
|  */ |  */ | ||||||
| void linked_list_free(struct linked_list *list); | void linked_list_free(struct linked_list *list); | ||||||
|  |  | ||||||
|   | |||||||
| @@ -44,7 +44,7 @@ void *queue_pop(struct queue *queue); | |||||||
|  |  | ||||||
| /** | /** | ||||||
|  * @brief Frees the queue. |  * @brief Frees the queue. | ||||||
|  * @since v2.1.0 |  * @since v3.0.0 | ||||||
|  */ |  */ | ||||||
| void queue_free(struct queue *queue); | void queue_free(struct queue *queue); | ||||||
|  |  | ||||||
|   | |||||||
| @@ -44,7 +44,7 @@ void *stack_pop(struct stack *stack); | |||||||
|  |  | ||||||
| /** | /** | ||||||
|  * @brief Frees the stack. |  * @brief Frees the stack. | ||||||
|  * @since v2.1.0 |  * @since v3.0.0 | ||||||
|  */ |  */ | ||||||
| void stack_free(struct stack *stack); | 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 array_list | ||||||
|  * @param print_element |  * @param print_element | ||||||
|  * @since v2.1.0 |  * @since v3.0.0 | ||||||
|  */ |  */ | ||||||
| void terminal_print_array_list(struct array_list* list, void (*print_element)(void*)); | void terminal_print_array_list(struct array_list* list, void (*print_element)(void*)); | ||||||
|  |  | ||||||
|   | |||||||
		Reference in New Issue
	
	Block a user