Skip to content

Commit

Permalink
finalize v0.2.0 (library 1:0:0)
Browse files Browse the repository at this point in the history
  • Loading branch information
livibetter committed Aug 30, 2014
1 parent 06218ff commit b84eab5
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 2 deletions.
3 changes: 3 additions & 0 deletions ChangeLog
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
[bash/Makefile.am]
* install as prefix/bin/td.bash

[lib/Makefile.am]
* version-info: 1:0:0

[main.c]
* print_help: add for help message
* main: add -h option for help message
Expand Down
5 changes: 4 additions & 1 deletion NEWS
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
===========================
NEWS for ?.?.? (????-??-??)
NEWS for 0.2.0 (2014-08-30)
===========================

Changes since 1.0.3 (2014-07-06)
Expand All @@ -11,6 +11,9 @@ Changes since 1.0.3 (2014-07-06)
* Python 2 and Python 3 bindings
* Bash loadable extension

[libtd]
* version 1:0:0

[td]

* add -h for help message
Expand Down
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# Process this file with autoconf to produce a configure script.

AC_PREREQ([2.69])
AC_INIT([td], [0.0.0], [[email protected]])
AC_INIT([td], [0.2.0], [[email protected]])
AC_CONFIG_AUX_DIR([build-aux])
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE([foreign -Wall -Werror])
Expand Down
1 change: 1 addition & 0 deletions lib/Makefile.am
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ if ENABLE_C
lib_LTLIBRARIES = $(lib_LTLIBRARIES__)

libtd_la_SOURCES = td.c td.h
libtd_la_LDFLAGS = -version-info 1:0:0
endif

CLEANFILES = $(lib_LTLIBRARIES__)

1 comment on commit b84eab5

@livibetter
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The release version was an error since previous release was 1.0.3, it can't be 0.2.0, 08fb539 corrected this error with v2.0.0.

Please sign in to comment.