~nytpu/gemroff

0fb0be453be18bdb10de9aac29e794413c74b7d1 — nytpu 29 days ago ebea097
Bump version to v14.prelease
3 files changed, 3 insertions(+), 3 deletions(-)

M alire.toml
M gnat/gemroff.gpr
M src/executable/gemroff-main.adb
M alire.toml => alire.toml +1 -1
@@ 1,6 1,6 @@
name = "gemroff"
description = "Line-based markup language taking inspiration from gemtext and roff"
version = "13.0.0"
version = "14.0.0.prerelease"
licenses = "AGPL-3.0-only"

project-files = ["gnat/gemroff.gpr", "gnat/executable.gpr"]

M gnat/gemroff.gpr => gnat/gemroff.gpr +1 -1
@@ 8,7 8,7 @@ with "ini_files.gpr";
library project Gemroff is

	for Library_Name use "gemroff";
	Version := "13";
	Version := "14.prerelease";
	for Library_Version use Project'Library_Name & ".so." & Version;

	Root := "../src/";

M src/executable/gemroff-main.adb => src/executable/gemroff-main.adb +1 -1
@@ 17,7 17,7 @@ with Getopts;

procedure Gemroff.Main is

	Version : constant String := "13";
	Version : constant String := "14.prerelease";

	------------------
	-- Put_To_Error --