Skip to content

Commit

Permalink
LibSpiro 20240903 - Version 1.5.0
Browse files Browse the repository at this point in the history
AC_PREREQ(2.70) downgraded to 2.69 for ELN distros, as explained here:
fontforge/fontforge#5404 (comment)
  • Loading branch information
JoesCat committed Sep 3, 2024
1 parent da2d627 commit a2f38e1
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
4 changes: 4 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
- 2024-Sep-03
* Libspiro Version 20240902 (1.5.0)
* Downgraded configure.ac AC_PREREQ(2.70) to 2.69 for ELN distros.

- 2024-Sep-02
* Libspiro Version 20240902 (1.4.0)
* Bugfix - seen in fontforge issue 5209. Reverted code to remove
Expand Down
1 change: 1 addition & 0 deletions Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ EXTRA_DIST = bezctx.md README-RaphLevien README.md README-GeorgeWilliams \
java/SpiroCanvas.java java/SpiroCP.java java/SpiroGeneralPath.java \
java/SpiroPointType.java m4/ax_check_compile_flag.m4 path5.png \
path6.png libspiro.3
nodist_EXTRA_DATA = .git .github

include_HEADERS = bezctx.h spiro.h spiroentrypoints.h
man_MANS = libspiro.3
Expand Down
10 changes: 5 additions & 5 deletions configure.ac
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# -*- Autoconf -*-
dnl Process this file with autoconf to produce a configure script.

# Copyright (C) 2013...2020 by Joe Da Silva
# Copyright (C) 2013...2024 by Joe Da Silva

AC_PREREQ([2.70])
AC_PREREQ([2.69])
#-------------------------------------------
# PackageTimestamp version
m4_define([spiro_package_stamp], [20240902])
m4_define([spiro_package_stamp], [20240903])
#-------------------------------------------
# Making point releases:
# spiro_major_version += 0;
Expand All @@ -21,7 +21,7 @@ m4_define([spiro_package_stamp], [20240902])
# spiro_minor_version = 0;
#
m4_define([spiro_major_version], [1])
m4_define([spiro_minor_version], [4])
m4_define([spiro_minor_version], [5])
m4_define([spiro_version],[spiro_major_version.spiro_minor_version])

#-------------------------------------------
Expand All @@ -45,7 +45,7 @@ m4_define([spiro_version],[spiro_major_version.spiro_minor_version])
# spiro_age = 0
#
m4_define([spiro_current], [1])
m4_define([spiro_revision],[4])
m4_define([spiro_revision],[5])
m4_define([spiro_age], [0])
m4_define([spiro_libver],[spiro_current:spiro_revision:spiro_age])

Expand Down

0 comments on commit a2f38e1

Please sign in to comment.