Skip to content

Commit

Permalink
chore: bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
nickelpro committed Aug 5, 2024
1 parent 4a7a08a commit fabafd6
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.25)

include(cmake/BootstrapVcpkg.cmake)

project(velocem LANGUAGES C CXX VERSION 0.0.9)
project(velocem LANGUAGES C CXX VERSION 0.0.10)

option(VELOCEM_USE_IO_URING "Use io_uring on Linux" ON)
option(VELOCEM_USE_IPO "Use interprocedural optimization if supported" ON)
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "velocem"
version = "0.0.9"
version = "0.0.10"
description = "Hyperspeed Python Web Framework"
readme = "ReadMe.md"
requires-python = ">=3.12"
Expand Down
2 changes: 1 addition & 1 deletion src/Constants.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
namespace velocem {

constexpr char gRequiredHeadersFormat[] {
"Server: Velocem/0.0.9\r\nDate: {:%a, %d %b %Y %T} GMT\r\n"};
"Server: Velocem/0.0.10\r\nDate: {:%a, %d %b %Y %T} GMT\r\n"};

inline std::string gRequiredHeaders {std::format(gRequiredHeadersFormat,
std::chrono::floor<std::chrono::seconds>(
Expand Down
2 changes: 1 addition & 1 deletion src/ModVelocem.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ PyMODINIT_FUNC PyInit_velocem(void) {
auto mod {PyModule_Create(&VelocemModule)};
if(!mod)
return nullptr;
if(PyModule_AddStringConstant(mod, "__version__", "0.0.9") == -1)
if(PyModule_AddStringConstant(mod, "__version__", "0.0.10") == -1)
return nullptr;
velocem::init_gPO();
return mod;
Expand Down
2 changes: 1 addition & 1 deletion vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "velocem",
"version": "0.0.9",
"version": "0.0.10",
"description": "Hyperspeed Python Web Framework",
"homepage": "https://github.com/nickelpro/velocem",
"maintainers": [
Expand Down

0 comments on commit fabafd6

Please sign in to comment.