From d0e5846012aa36f94cdf39270f8592e192ae6ca3 Mon Sep 17 00:00:00 2001 From: knb Date: Fri, 17 Apr 2026 05:21:39 +0900 Subject: [PATCH] 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 --- CMakeLists.txt | 2 +- README.md | 2 +- ruby/README.md | 2 +- ruby/lib/libptouch/version.rb | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 84fc02b..cb5f71c 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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) diff --git a/README.md b/README.md index 1886f1b..469090a 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # ptouch_label -**バージョン 1.0.0**(初回リリース) +**バージョン 1.0.1** Brother P-touch シリーズ向けのラベル印刷用 **C コアライブラリ(libptouch)** と、動作確認用 **CLI(`ptouch-print`)** のリポジトリです。 diff --git a/ruby/README.md b/ruby/README.md index 0354cbe..4edfc63 100644 --- a/ruby/README.md +++ b/ruby/README.md @@ -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` を自動で読みに行きます。別のパスにある場合は環境変数で指定できます。 diff --git a/ruby/lib/libptouch/version.rb b/ruby/lib/libptouch/version.rb index 50052c1..ceabb55 100644 --- a/ruby/lib/libptouch/version.rb +++ b/ruby/lib/libptouch/version.rb @@ -1,5 +1,5 @@ # frozen_string_literal: true module Libptouch - VERSION = "1.0.0" + VERSION = "1.0.1" end