Bump project version metadata to 1.0.1.

Synchronize CMake, README, and Ruby gem version strings with the released v1.0.1 tag to keep build and packaging metadata consistent.

Made-with: Cursor
This commit is contained in:
knb
2026-04-17 05:21:39 +09:00
parent d2fd6cc1f9
commit acbe4c53fd
4 changed files with 4 additions and 4 deletions

View File

@@ -4,7 +4,7 @@
# Email: knb@artif.org
cmake_minimum_required(VERSION 3.16)
project(ptouch_label VERSION 1.0.0 LANGUAGES C)
project(ptouch_label VERSION 1.0.1 LANGUAGES C)
set(CMAKE_C_STANDARD 11)
set(CMAKE_C_STANDARD_REQUIRED ON)

View File

@@ -1,6 +1,6 @@
# ptouch_label
**バージョン 1.0.0**(初回リリース)
**バージョン 1.0.1**
Brother P-touch シリーズ向けのラベル印刷用 **C コアライブラリlibptouch** と、動作確認用 **CLI`ptouch-print`** のリポジトリです。

View File

@@ -18,7 +18,7 @@ cd ruby
bundle install # または gem install ffi
bundle exec rubocop # 任意: スタイルチェック(.rubocop.yml
gem build libptouch.gemspec
gem install ./libptouch-1.0.0.gem
gem install ./libptouch-1.0.1.gem
```
ビルド済みの `../build/libptouch.so` を自動で読みに行きます。別のパスにある場合は環境変数で指定できます。

View File

@@ -1,5 +1,5 @@
# frozen_string_literal: true
module Libptouch
VERSION = "1.0.0"
VERSION = "1.0.1"
end