Skip to content

Commit

Permalink
feat: version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
PETAce committed Oct 24, 2023
1 parent 096245f commit 92d1a6f
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,7 @@

- Added network abstract interface.
- Added socket network implementation.

## Version 0.2.0

No update.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ if(NOT CMAKE_BUILD_TYPE)
endif()
message(STATUS "Build type (CMAKE_BUILD_TYPE): ${CMAKE_BUILD_TYPE}")

project(NETWORK VERSION 0.1.0 LANGUAGES CXX C)
project(NETWORK VERSION 0.2.0 LANGUAGES CXX C)

########################
# Global configuration #
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,13 +70,13 @@ This project is licensed under the [Apache-2.0 License](LICENSE).

To cite PETAce in academic papers, please use the following BibTeX entries.

### Version 0.1.0
### Version 0.2.0

```tex
@misc{petace,
title = {PETAce (release 0.1.0)},
title = {PETAce (release 0.2.0)},
howpublished = {\url{https://github.com/tiktok-privacy-innovation/PETAce}},
month = July,
month = Oct,
year = 2023,
note = {TikTok Pte. Ltd.},
key = {PETAce}
Expand Down
4 changes: 2 additions & 2 deletions example/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@

cmake_minimum_required(VERSION 3.14)

project(NETWORKExamples VERSION 0.1.0 LANGUAGES CXX)
project(NETWORKExamples VERSION 0.2.0 LANGUAGES CXX)

# If not called from root CMakeLists.txt
if(NOT DEFINED NETWORK_BUILD_EXAMPLE)
set(NETWORK_BUILD_EXAMPLE ON)

find_package(PETAce-Network 0.1.0 EXACT REQUIRED)
find_package(PETAce-Network 0.2.0 EXACT REQUIRED)

set(CMAKE_RUNTIME_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/bin)
endif()
Expand Down
4 changes: 2 additions & 2 deletions test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@

cmake_minimum_required(VERSION 3.14)

project(NETWORKTest VERSION 0.1.0 LANGUAGES CXX C)
project(NETWORKTest VERSION 0.2.0 LANGUAGES CXX C)

# If not called from root CMakeLists.txt
if(NOT DEFINED NETWORK_BUILD_TEST)
set(NETWORK_BUILD_TEST ON)

find_package(PETAce-Network 0.1.0 EXACT REQUIRED)
find_package(PETAce-Network 0.2.0 EXACT REQUIRED)

# Must define these variables and include macros
set(CMAKE_ARCHIVE_OUTPUT_DIRECTORY ${CMAKE_CURRENT_BINARY_DIR}/lib)
Expand Down

0 comments on commit 92d1a6f

Please sign in to comment.