From 091b1757c65e127b797c68b0cb1a81b27cc561d9 Mon Sep 17 00:00:00 2001 From: Masahiko AMANO Date: Sat, 31 Dec 2022 17:22:08 +0300 Subject: [PATCH] chore: prepare for 1.0.0 release --- CMakeLists.txt | 2 +- cli/cli.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 973495f..03d1da6 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -1,6 +1,6 @@ cmake_minimum_required(VERSION 3.16) project(tanabata - VERSION 0.1.3 + VERSION 1.0.0 HOMEPAGE_URL https://github.com/H1K0/tanabata LANGUAGES C) diff --git a/cli/cli.c b/cli/cli.c index 5cce0a6..24b8e4e 100644 --- a/cli/cli.c +++ b/cli/cli.c @@ -433,7 +433,7 @@ int main(int argc, char **argv) { } return 0; case 'V': - printf("0.1.3-dev\n"); + printf("1.0.0\n"); return 0; case 'I': abspath = realpath(optarg, abspath);