Skip to content

Commit

Permalink
Merge branch '4.0-stable' into stable-main
Browse files Browse the repository at this point in the history
  • Loading branch information
Bucky Kittinger committed May 22, 2023
2 parents e3ef75c + 360ce58 commit 8671ca2
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ project(cdt)
set(VERSION_MAJOR 4)
set(VERSION_MINOR 0)
set(VERSION_PATCH 0)
set(VERSION_SUFFIX rc1)
set(VERSION_SUFFIX "")

if (VERSION_SUFFIX)
set(VERSION_FULL "${VERSION_MAJOR}.${VERSION_MINOR}.${VERSION_PATCH}-${VERSION_SUFFIX}")
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ CDT currently supports Linux x86_64 Debian packages. Visit the [release page](ht
Download the appropriate version of the Debian package and then install it. To download and install the latest version, run the following:

```sh
wget https://github.com/AntelopeIO/cdt/releases/download/v4.0.0-rc1/cdt_4.0.0-rc1_amd64.deb
sudo apt install ./cdt_4.0.0-rc1_amd64.deb
wget https://github.com/AntelopeIO/cdt/releases/download/v4.0.0/cdt_4.0.0_amd64.deb
sudo apt install ./cdt_4.0.0_amd64.deb
```
### Debian package uninstall

Expand Down
2 changes: 1 addition & 1 deletion tools/external/antler-proj
Submodule antler-proj updated 55 files
+1 −1 .clang-format
+16 −0 .gitattributes
+7 −0 .githooks/pre-commit
+68 −44 docs/man/antler-proj.1
+46 −36 docs/man/antler-proj.1.md
+1 −1 include/CMakeLists.txt
+210 −211 include/antler/project/cmake.hpp
+32 −34 include/antler/project/dependency.hpp
+170 −172 include/antler/project/net_utils.hpp
+178 −179 include/antler/project/object.hpp
+85 −86 include/antler/project/populator.hpp
+28 −28 include/antler/project/project.hpp
+75 −75 include/antler/project/source.hpp
+26 −22 include/antler/project/version.hpp
+84 −82 include/antler/project/version_constraint.hpp
+67 −67 include/antler/project/yaml.hpp
+5 −5 include/antler/system/filesystem.hpp
+20 −20 include/antler/system/serialize.hpp
+185 −183 include/antler/system/utils.hpp
+13 −13 include/antler/system/version.hpp.in
+35 −29 src/CMakeLists.txt
+2 −2 src/cmake_templates.cpp
+12 −14 src/dependency.cpp
+24 −12 src/location.cpp
+13 −15 src/object.cpp
+14 −11 src/populator.cpp
+279 −277 src/project-parse.cpp
+26 −27 src/project-populate.cpp
+13 −7 src/project-print.cpp
+6 −7 src/project.cpp
+84 −87 src/version_constraint.cpp
+77 −77 tests/cmake_tests.cpp
+15 −9 tests/common.hpp
+3 −3 tests/dependency_tests.cpp
+29 −29 tests/init_tests.cpp
+2 −2 tests/main.cpp
+1 −1 tests/net_utils_tests.cpp
+63 −22 tests/object_tests.cpp
+25 −20 tests/project_tests.cpp
+3 −2 tests/version_constraint_tests.cpp
+87 −89 tests/version_tests.cpp
+7,775 −7,623 tools/CLI11.hpp
+236 −237 tools/add_to.hpp
+125 −128 tools/build.hpp
+50 −50 tools/common.hpp
+41 −39 tools/init.hpp
+112 −107 tools/main.cpp
+37 −39 tools/populate.hpp
+133 −141 tools/remove_from.hpp
+50 −15 tools/tests/add_and_update.py
+19 −0 tools/tests/init_tests.py
+4 −3 tools/tests/pandb_contract/apps/test/test.cpp
+5 −7 tools/tests/pandb_contract/include/test/test.hpp
+197 −207 tools/update.hpp
+42 −45 tools/validate.hpp

0 comments on commit 8671ca2

Please sign in to comment.