diff options
| author | Clement Sibille <clements+git@lisible.xyz> | 2024-05-20 01:34:53 +0900 |
|---|---|---|
| committer | Clement Sibille <clements+git@lisible.xyz> | 2024-05-20 01:34:53 +0900 |
| commit | 46fff87fc41dcb13dfe463254088497ad2051584 (patch) | |
| tree | 12bd2c531d86748be13371a4a9472d6400a47b89 | |
| parent | ec7c66794b993fd6a0c6db8795f8508df84e23c3 (diff) | |
Add changelog and set version in meson.build
| -rw-r--r-- | CHANGELOG.md | 12 | ||||
| -rw-r--r-- | meson.build | 2 |
2 files changed, 13 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..bab9a2f --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,12 @@ +# Changelog + +## 0.1.0 (2024-05-20) +- Add LSTD_ASSERT macros +- Add bitset module +- Add bytes utilities module +- Add HashSet/HashTable +- Add log module +- Add allocator abstraction +- Add String wrappers +- Add Vec + diff --git a/meson.build b/meson.build index 2aa11cd..131693c 100644 --- a/meson.build +++ b/meson.build @@ -1,4 +1,4 @@ -project('lisiblestd', 'c', default_options: ['c_std=c18', 'warning_level=3']) +project('lisiblestd', 'c', version: '0.1.0', default_options: ['c_std=c18', 'warning_level=3']) lisiblestd_incdir = include_directories('src/') lisiblestd_lib = library('lisiblestd', |
