Skip to content

Commit

Permalink
Bump version to 1.0.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rmisev committed Sep 12, 2024
1 parent f081114 commit e5b5879
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ include(FetchContent)
FetchContent_Declare(upa
GIT_REPOSITORY https://github.com/upa-url/upa.git
GIT_SHALLOW TRUE
GIT_TAG v0.4.2
GIT_TAG v1.0.0
)
FetchContent_MakeAvailable(upa)
...
Expand All @@ -77,7 +77,7 @@ target_link_libraries(exe-target PRIVATE upa::url)
If you are using the [CPM.cmake script](https://github.com/cpm-cmake/CPM.cmake) and have included it in your `CMakeLists.txt`, then:

```cmake
CPMAddPackage("gh:upa-url/upa@0.4.2")
CPMAddPackage("gh:upa-url/upa@1.0.0")
...
target_link_libraries(exe-target PRIVATE upa::url)
```
Expand Down
8 changes: 4 additions & 4 deletions include/upa/url_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,11 @@

// NOLINTBEGIN(*-macro-*)

#define UPA_URL_VERSION_MAJOR 0
#define UPA_URL_VERSION_MINOR 4
#define UPA_URL_VERSION_PATCH 2
#define UPA_URL_VERSION_MAJOR 1
#define UPA_URL_VERSION_MINOR 0
#define UPA_URL_VERSION_PATCH 0

#define UPA_URL_VERSION "0.4.2"
#define UPA_URL_VERSION "1.0.0"

// NOLINTEND(*-macro-*)

Expand Down

0 comments on commit e5b5879

Please sign in to comment.