From 95046de36f10d654f914861f38779d8ccc835637 Mon Sep 17 00:00:00 2001 From: admin Date: Wed, 29 Nov 2023 00:12:28 +0900 Subject: [PATCH] Update version --- .gitignore | 1 - doc/version.texi | 4 ++++ guix.scm | 36 ------------------------------------ hall.scm | 2 +- vouivre/hconfig.scm | 2 +- 5 files changed, 6 insertions(+), 39 deletions(-) create mode 100644 doc/version.texi diff --git a/.gitignore b/.gitignore index 0a123e7..2506c62 100644 --- a/.gitignore +++ b/.gitignore @@ -46,7 +46,6 @@ /doc/*.vr /doc/*.vrs /doc/stamp-vti -/doc/version.texi /doc/version-*.texi /m4/* /pre-inst-env diff --git a/doc/version.texi b/doc/version.texi new file mode 100644 index 0000000..049af9e --- /dev/null +++ b/doc/version.texi @@ -0,0 +1,4 @@ +@set UPDATED 25 November 2023 +@set UPDATED-MONTH November 2023 +@set EDITION 0.2.0 +@set VERSION 0.2.0 diff --git a/guix.scm b/guix.scm index ee041ad..e69de29 100644 --- a/guix.scm +++ b/guix.scm @@ -1,36 +0,0 @@ -(use-modules - (guix packages) - ((guix licenses) #:prefix license:) - (guix download) - (guix gexp) - (guix build-system gnu) - (gnu packages) - (gnu packages autotools) - (gnu packages guile) - (gnu packages guile-xyz) - (gnu packages pkg-config) - (gnu packages texinfo) - (srfi srfi-1)) - -(package - (name "vouivre") - (version "0.1.0") - (source - (local-file - (dirname (current-filename)) - #:recursive? - #t - #:select? - (lambda (file stat) - (not (any (lambda (my-string) (string-contains file my-string)) - (list ".git" ".dir-locals.el" "guix.scm")))))) - (build-system gnu-build-system) - (arguments `()) - (native-inputs (list autoconf automake pkg-config texinfo)) - (inputs (list guile-3.0)) - (propagated-inputs (list)) - (synopsis "") - (description "") - (home-page "https://vouivredigital.com") - (license license:gpl3+)) - diff --git a/hall.scm b/hall.scm index 2679954..e8d74cf 100644 --- a/hall.scm +++ b/hall.scm @@ -1,7 +1,7 @@ (hall-description (name "vouivre") (prefix "") - (version "0.1.0") + (version "0.2.0") (author "Vouivre Digital Corporation") (email "admin@vouivredigital.com") (copyright (2023)) diff --git a/vouivre/hconfig.scm b/vouivre/hconfig.scm index d2ba4a2..ca33c4f 100644 --- a/vouivre/hconfig.scm +++ b/vouivre/hconfig.scm @@ -13,7 +13,7 @@ init-nls init-locale)) -(define %version "0.1") +(define %version "0.2.0") (define %author "Vouivre Digital Corporation") -- 2.39.2