Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ uses [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [Unreleased]

## [0.3.0] - 2026-09-04

### Changed

- **HTTP 404 now says which kind of 404 it was.** `ErrorCode::FeedUnavailable`
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.20)
project(spc-cpp VERSION 0.2.0 LANGUAGES CXX)
project(spc-cpp VERSION 0.3.0 LANGUAGES CXX)

set(CMAKE_CXX_STANDARD 23)
set(CMAKE_CXX_STANDARD_REQUIRED ON)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ FetchContent consumers can pin the release:
include(FetchContent)
FetchContent_Declare(spc_cpp
GIT_REPOSITORY https://github.com/Reddimus/spc-cpp.git
GIT_TAG v0.2.0
GIT_TAG v0.3.0
)
FetchContent_MakeAvailable(spc_cpp)
target_link_libraries(myapp PRIVATE spc::spc)
Expand Down
2 changes: 1 addition & 1 deletion include/spc/http_client.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
/// Set from `PROJECT_VERSION` by the build. The fallback keeps the header
/// usable when it is read outside the project's own CMake targets.
#ifndef SPC_VERSION_STRING
#define SPC_VERSION_STRING "0.2.0"
#define SPC_VERSION_STRING "0.3.0"
#endif

#include <chrono>
Expand Down
Loading