Skip to content

Commit

Permalink
increment version to 1.8.1
Browse files Browse the repository at this point in the history
  • Loading branch information
bovine committed Jan 19, 2024
1 parent 1df5594 commit 890274a
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

### This is yajl-tcl, a direct Tcl interface to the yajl JSON generator library.

*Version 1.7.0*
*Version 1.8.1*

This package is a freely available open source package under the "Berkeley" license, same as Tcl. You can do virtually anything you like with it, such as modifying it, redistributing it, and selling it either in whole or in part. See the file "LICENSE" for complete information.

Expand Down
2 changes: 1 addition & 1 deletion configure.in
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ dnl to configure the system for the local environment.
# so you can encode the package version directly into the source files.
#-----------------------------------------------------------------------

AC_INIT([yajltcl],[1.8.1])
AC_INIT([yajltcl], [1.8.1])

#--------------------------------------------------------------------
# Call TEA_INIT as the first TEA_ macro to set up initial vars.
Expand Down
2 changes: 1 addition & 1 deletion doc/yajl-tcl.man
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[manpage_begin yajl-tcl n 1.7.0]
[manpage_begin yajl-tcl n 1.8.1]
[moddesc {Tcl bindings for Yet Another JSON Library (YAJL)}]
[copyright {2010 FlightAware LLC (BSD License)}]
[titledesc {Tcl bindings for Yet Another JSON Library (YAJL)}]
Expand Down
4 changes: 2 additions & 2 deletions update_ver.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@

# This script simplifies the process of incrementing all version numbers for a new release.

NEWVER="1.7.0"
NEWVER="1.8.1"

perl -p -i -e "s/^(AC_INIT\\(\\[[a-z_]+\\],) \\[[0-9.]+\\]/\\1 \\[$NEWVER\\]/" configure.in
perl -p -i -e "s/^(AC_INIT\\(\\[[a-z_]+\\],) ?\\[[0-9.]+\\]/\\1 \\[$NEWVER\\]/" configure.in

perl -p -i -e "s/^(\*Version) [0-9.]+(\*)/\\1 $NEWVER\\2/" README.md

Expand Down

0 comments on commit 890274a

Please sign in to comment.