Skip to content

Commit

Permalink
Bump version to 0.4.0
Browse files Browse the repository at this point in the history
  • Loading branch information
rmisev committed Jul 20, 2024
1 parent ffecac1 commit 6f533b5
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ include(FetchContent)
FetchContent_Declare(upa
GIT_REPOSITORY https://github.com/upa-url/upa.git
GIT_SHALLOW TRUE
GIT_TAG v0.3.1
GIT_TAG v0.4.0
)
FetchContent_MakeAvailable(upa)
...
Expand All @@ -78,7 +78,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 CMakeCMakeLists.txt, then:

```cmake
CPMAddPackage("gh:upa-url/upa@0.3.1")
CPMAddPackage("gh:upa-url/upa@0.4.0")
...
target_link_libraries(exe-target PRIVATE upa::url)
```
Expand Down
6 changes: 3 additions & 3 deletions include/upa/url_version.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@
// NOLINTBEGIN(*-macro-*)

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

#define UPA_URL_VERSION "0.3.1"
#define UPA_URL_VERSION "0.4.0"

// NOLINTEND(*-macro-*)

Expand Down

0 comments on commit 6f533b5

Please sign in to comment.