Version leap to 1.0.0

This commit is contained in:
Thomas Schmitt 2011-01-16 13:29:39 +01:00
parent 45ffdef845
commit 35ceac65f7
2 changed files with 14 additions and 14 deletions

View File

@ -1,4 +1,4 @@
AC_INIT([libisofs], [0.6.41], [http://libburnia-project.org]) AC_INIT([libisofs], [1.0.0], [http://libburnia-project.org])
AC_PREREQ([2.50]) AC_PREREQ([2.50])
dnl AC_CONFIG_HEADER([config.h]) dnl AC_CONFIG_HEADER([config.h])
@ -38,9 +38,9 @@ dnl It rather feeds the API function iso_lib_version().
dnl dnl
dnl If LIBISOFS_*_VERSION changes, be sure to change AC_INIT above to match. dnl If LIBISOFS_*_VERSION changes, be sure to change AC_INIT above to match.
dnl dnl
LIBISOFS_MAJOR_VERSION=0 LIBISOFS_MAJOR_VERSION=1
LIBISOFS_MINOR_VERSION=6 LIBISOFS_MINOR_VERSION=0
LIBISOFS_MICRO_VERSION=41 LIBISOFS_MICRO_VERSION=0
LIBISOFS_VERSION=$LIBISOFS_MAJOR_VERSION.$LIBISOFS_MINOR_VERSION.$LIBISOFS_MICRO_VERSION LIBISOFS_VERSION=$LIBISOFS_MAJOR_VERSION.$LIBISOFS_MINOR_VERSION.$LIBISOFS_MICRO_VERSION
AC_SUBST(LIBISOFS_MAJOR_VERSION) AC_SUBST(LIBISOFS_MAJOR_VERSION)
@ -50,10 +50,10 @@ AC_SUBST(LIBISOFS_VERSION)
dnl Libtool versioning dnl Libtool versioning
LT_RELEASE=$LIBISOFS_MAJOR_VERSION.$LIBISOFS_MINOR_VERSION LT_RELEASE=$LIBISOFS_MAJOR_VERSION.$LIBISOFS_MINOR_VERSION
# 2010.12.10 development jump has not yet happened # 2011.01.16 development jump has not yet happened
# SONAME = 42 - 36 = 6 . Library name = libisofs.6.36.0 # SONAME = 44 - 38 = 6 . Library name = libisofs.6.38.0
LT_CURRENT=42 LT_CURRENT=44
LT_AGE=36 LT_AGE=38
LT_REVISION=0 LT_REVISION=0
LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE` LT_CURRENT_MINUS_AGE=`expr $LT_CURRENT - $LT_AGE`

View File

@ -1120,9 +1120,9 @@ int iso_lib_is_compatible(int major, int minor, int micro);
* *
* @since 0.6.2 * @since 0.6.2
*/ */
#define iso_lib_header_version_major 0 #define iso_lib_header_version_major 1
#define iso_lib_header_version_minor 6 #define iso_lib_header_version_minor 0
#define iso_lib_header_version_micro 41 #define iso_lib_header_version_micro 0
/** /**
* Usage discussion: * Usage discussion:
@ -1368,7 +1368,7 @@ int iso_write_opts_set_aaip(IsoWriteOpts *opts, int enable);
* @return >=0 success, <0 failure * @return >=0 success, <0 failure
* In case of >=0 the return value tells the effectively set len. * In case of >=0 the return value tells the effectively set len.
* E.g. 96 after using len == -1. * E.g. 96 after using len == -1.
* @since 0.6.42 * @since 1.0.0
*/ */
int iso_write_opts_set_untranslated_name_len(IsoWriteOpts *opts, int len); int iso_write_opts_set_untranslated_name_len(IsoWriteOpts *opts, int len);
@ -1384,7 +1384,7 @@ int iso_write_opts_set_untranslated_name_len(IsoWriteOpts *opts, int len);
* 1= allow dots , 0= disallow dots and convert them * 1= allow dots , 0= disallow dots and convert them
* @return * @return
* 1 success, < 0 error * 1 success, < 0 error
* @since 0.6.42 * @since 1.0.0
*/ */
int iso_write_opts_set_allow_dir_id_ext(IsoWriteOpts *opts, int allow); int iso_write_opts_set_allow_dir_id_ext(IsoWriteOpts *opts, int allow);
@ -4040,7 +4040,7 @@ int iso_tree_add_new_file(IsoDir *parent, const char *name, IsoStream *stream,
* @return * @return
* ISO_SUCCESS or <0 for error. E.g. ISO_NULL_POINTER, ISO_OUT_OF_MEM. * ISO_SUCCESS or <0 for error. E.g. ISO_NULL_POINTER, ISO_OUT_OF_MEM.
* *
* @since 0.6.42 * @since 1.0.0
*/ */
int iso_memory_stream_new(unsigned char *buf, size_t size, IsoStream **stream); int iso_memory_stream_new(unsigned char *buf, size_t size, IsoStream **stream);