Skip to content

Commit

Permalink
[#329] Bump version to 0.4.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
korydraughn authored and alanking committed Aug 23, 2024
1 parent 514e7ea commit 0e0fd03
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,10 @@ include(RequireOutOfSourceBuild)

set(IRODS_HTTP_API_BINARY_NAME "irods_http_api")

set(IRODS_CLIENT_VERSION "0.3.0")
set(IRODS_CLIENT_VERSION "0.4.0")
set(IRODS_HTTP_API_VERSION "${IRODS_CLIENT_VERSION}")

set(IRODS_PACKAGE_REVISION "1")
set(IRODS_PACKAGE_REVISION "0")

include(IrodsExternals)
IRODS_MACRO_CHECK_DEPENDENCY_SET_FULLPATH(JWTCPP jwt-cpp0.6.99.0-0)
Expand Down
2 changes: 1 addition & 1 deletion core/src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -185,7 +185,7 @@ constexpr auto default_jsonschema() -> std::string_view
// clang-format on
return R"({{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://schemas.irods.org/irods-http-api/0.3.0/schema.json",
"$id": "https://schemas.irods.org/irods-http-api/0.4.0/schema.json",
"type": "object",
"properties": {{
"http_server": {{
Expand Down
4 changes: 2 additions & 2 deletions test/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

'host': 'localhost',
'port': 9000,
'url_base': '/irods-http-api/0.3.0',
'url_base': '/irods-http-api/0.4.0',

'openid_connect': {
'mode': 'client'
Expand All @@ -30,7 +30,7 @@

schema = {
'$schema': 'http://json-schema.org/draft-07/schema#',
'$id': 'https://schemas.irods.org/irods-http-api/test/0.3.0/test-schema.json',
'$id': 'https://schemas.irods.org/irods-http-api/test/0.4.0/test-schema.json',
'type': 'object',
'properties': {
'host': {
Expand Down

0 comments on commit 0e0fd03

Please sign in to comment.