Skip to content

Commit 1419d36

Browse files
committed
chore: version bump
1 parent 8ed029e commit 1419d36

File tree

5 files changed

+5
-5
lines changed

5 files changed

+5
-5
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.25)
22

33
include(cmake/BootstrapVcpkg.cmake)
44

5-
project(velocem LANGUAGES C CXX VERSION 0.0.7)
5+
project(velocem LANGUAGES C CXX VERSION 0.0.8)
66

77
find_package(Python3 3.12 REQUIRED COMPONENTS Development.Module)
88
find_package(asio CONFIG REQUIRED)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[project]
22
name = "velocem"
3-
version = "0.0.7"
3+
version = "0.0.8"
44
description = "Hyperspeed Python Web Framework"
55
readme = "ReadMe.md"
66
requires-python = ">=3.12"

src/Constants.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
namespace velocem {
1313

1414
constexpr char gRequiredHeadersFormat[] {
15-
"Server: Velocem/0.0.7\r\nDate: {:%a, %d %b %Y %T} GMT\r\n"};
15+
"Server: Velocem/0.0.8\r\nDate: {:%a, %d %b %Y %T} GMT\r\n"};
1616

1717
inline std::string gRequiredHeaders {std::format(gRequiredHeadersFormat,
1818
std::chrono::floor<std::chrono::seconds>(

src/ModVelocem.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -256,7 +256,7 @@ PyMODINIT_FUNC PyInit_velocem(void) {
256256
auto mod {PyModule_Create(&VelocemModule)};
257257
if(!mod)
258258
return nullptr;
259-
if(PyModule_AddStringConstant(mod, "__version__", "0.0.7") == -1)
259+
if(PyModule_AddStringConstant(mod, "__version__", "0.0.8") == -1)
260260
return nullptr;
261261
return mod;
262262
}

vcpkg.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "velocem",
3-
"version": "0.0.7",
3+
"version": "0.0.8",
44
"description": "Hyperspeed Python Web Framework",
55
"homepage": "https://github.com/nickelpro/velocem",
66
"maintainers": [

0 commit comments

Comments
 (0)