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: 1 addition & 1 deletion .nekorelease.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"packageName": "neko-schema",
"repositoryUrl": "https://github.com/moehoshio/NekoSchema",
"repositoryUrl": "https://github.com/hoshimoe/NekoSchema",
"packageManagers": [
"vcpkg",
"Conan"
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.14)
project(NekoSchema VERSION 1.1.5 LANGUAGES CXX)
project(NekoSchema VERSION 1.1.6 LANGUAGES CXX)

# ================
# === Config ====
Expand Down
22 changes: 11 additions & 11 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ NekoSchema serves as a foundational module that defines common types, enumeratio
![Require](https://img.shields.io/badge/%20Require%20-%3E=%20C++%2020-orange.svg)
[![CMake](https://img.shields.io/badge/CMake-3.14+-green.svg)](https://cmake.org/)
![Module Support](https://img.shields.io/badge/Modules-C%2B%2B20-blueviolet.svg)
[![CI Status](https://github.com/moehoshio/NekoSchema/actions/workflows/ci.yml/badge.svg)](https://github.com/moehoshio/NekoSchema/actions/workflows/ci.yml)
[![CI Status](https://github.com/hoshimoe/NekoSchema/actions/workflows/ci.yml/badge.svg)](https://github.com/hoshimoe/NekoSchema/actions/workflows/ci.yml)

## Features

Expand Down Expand Up @@ -43,7 +43,7 @@ include(FetchContent)
# Add NekoSchema to your CMake project
FetchContent_Declare(
NekoSchema
GIT_REPOSITORY https://github.com/moehoshio/NekoSchema.git
GIT_REPOSITORY https://github.com/hoshimoe/NekoSchema.git
GIT_TAG main
)
FetchContent_MakeAvailable(NekoSchema)
Expand Down Expand Up @@ -194,13 +194,13 @@ target_link_libraries(your_target PRIVATE Neko::Schema::Module)
1. Clone or download the repository to your local machine:

```shell
git clone https://github.com/moehoshio/NekoSchema.git
git clone https://github.com/hoshimoe/NekoSchema.git
```

or

```shell
curl -L -o NekoSchema.zip https://github.com/moehoshio/NekoSchema/archive/refs/heads/main.zip
curl -L -o NekoSchema.zip https://github.com/hoshimoe/NekoSchema/archive/refs/heads/main.zip

unzip NekoSchema.zip
```
Expand Down Expand Up @@ -348,10 +348,10 @@ This will skip test targets during the build process.

## See More

- [NekoNet](https://github.com/moehoshio/NekoNet): A modern , easy-to-use C++20 networking library via libcurl.
- [NekoLog](https://github.com/moehoshio/NekoLog): An easy-to-use, modern, lightweight, and efficient C++20 logging library.
- [NekoEvent](https://github.com/moehoshio/NekoEvent): A modern easy to use type-safe and high-performance event handling system for C++.
- [NekoSchema](https://github.com/moehoshio/NekoSchema): A lightweight, header-only C++20 schema library.
- [NekoSystem](https://github.com/moehoshio/NekoSystem): A modern C++20 cross-platform system utility library.
- [NekoFunction](https://github.com/moehoshio/NekoFunction): A comprehensive modern C++ utility library that provides practical functions for common programming tasks.
- [NekoThreadPool](https://github.com/moehoshio/NekoThreadPool): An easy to use and efficient C++ 20 thread pool that supports priorities and submission to specific threads.
- [NekoNet](https://github.com/hoshimoe/NekoNetwork): A modern , easy-to-use C++20 networking library via libcurl.
- [NekoLog](https://github.com/hoshimoe/NekoLog): An easy-to-use, modern, lightweight, and efficient C++20 logging library.
- [NekoEvent](https://github.com/hoshimoe/NekoEvent): A modern easy to use type-safe and high-performance event handling system for C++.
- [NekoSchema](https://github.com/hoshimoe/NekoSchema): A lightweight, header-only C++20 schema library.
- [NekoSystem](https://github.com/hoshimoe/NekoSystem): A modern C++20 cross-platform system utility library.
- [NekoFunction](https://github.com/hoshimoe/NekoFunction): A comprehensive modern C++ utility library that provides practical functions for common programming tasks.
- [NekoThreadPool](https://github.com/hoshimoe/NekoThreadPool): An easy to use and efficient C++ 20 thread pool that supports priorities and submission to specific threads.
7 changes: 6 additions & 1 deletion packages/Conan/neko-schema/all/conandata.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
sources:
"1.1.5":
url: "https://github.com/moehoshio/NekoSchema/archive/refs/tags/v1.1.5.tar.gz"
url: "https://github.com/hoshimoe/NekoSchema/archive/refs/tags/v1.1.5.tar.gz"
sha256: "d8705eee4bfe67a8557aa6209aa87594db0484de6bd20642b0f834935aa4ad48"

"1.1.6":
url: "https://github.com/hoshimoe/NekoSchema/archive/refs/tags/v1.1.6.tar.gz"
# TODO(release): replace with the real sha256 of the v1.1.6 tarball
sha256: "REPLACE_AFTER_TAGGING"
2 changes: 1 addition & 1 deletion packages/Conan/neko-schema/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
class NekoSchemaConan(ConanFile):
name = "neko-schema"
license = "MIT OR Apache-2.0"
homepage = "https://github.com/moehoshio/NekoSchema"
homepage = "https://github.com/hoshimoe/NekoSchema"
url = "https://github.com/conan-io/conan-center-index"
description = "A lightweight C++20 header-only library providing fundamental type definitions and utilities for the Neko ecosystem"
topics = ("c++20", "header-only", "schema", "types", "auto-srcLoc", "utilities")
Expand Down
3 changes: 3 additions & 0 deletions packages/Conan/neko-schema/config.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
versions:
"1.1.5":
folder: all

"1.1.6":
folder: all
7 changes: 4 additions & 3 deletions packages/vcpkg/neko-schema/portfile.cmake
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
vcpkg_from_github(
OUT_SOURCE_PATH SOURCE_PATH
REPO moehoshio/NekoSchema
REF v1.1.5
SHA512 a4383927168a06fc50623e8a0cdb4c1d9dabfa8a6f2ae6408aff5b468cd9a3bdca57262187c231231ad70eb2a6b65d5574a824cc0d4be6a43e62c4ecf342ef0b
REPO hoshimoe/NekoSchema
REF v1.1.6
# TODO(release): replace with the real SHA512 of the v1.1.6 tarball
SHA512 0
HEAD_REF main
)

Expand Down
4 changes: 2 additions & 2 deletions packages/vcpkg/neko-schema/vcpkg.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"name": "neko-schema",
"version": "1.1.5",
"version": "1.1.6",
"description": "A lightweight C++20 header-only library providing fundamental type definitions and utilities for the Neko ecosystem",
"homepage": "https://github.com/moehoshio/NekoSchema",
"homepage": "https://github.com/hoshimoe/NekoSchema",
"license": "MIT OR Apache-2.0",
"supports": "!uwp",
"dependencies": [
Expand Down
Loading