Skip to content

Commit

Permalink
release mmlib-1.4.0
Browse files Browse the repository at this point in the history
Change-Id: I4c883b52394a208331b53c9587ab7c943a8d7798
  • Loading branch information
nbourdau committed May 17, 2022
1 parent ad4aaff commit bdbda04
Show file tree
Hide file tree
Showing 7 changed files with 18 additions and 6 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.3.0
1.4.0
2 changes: 1 addition & 1 deletion configure.ac
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# - If any interfaces have been removed since the last public release, then
# set age to 0.

m4_define([lib_current],2)
m4_define([lib_current],3)
m4_define([lib_revision],0)
m4_define([lib_age],1)

Expand Down
7 changes: 7 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
mmlib (1.4.0) unstable; urgency=medium

* Repurpose blksize field of mm_stat to expose atime.
* Add mm_futimens() and mm_utimens()

-- Nicolas Bourdaud <nicolas.bourdaud@gmail.com> Tue, 17 May 2022 08:23:53 +0200

mmlib (1.3.0) unstable; urgency=medium

* Add mm_copy().
Expand Down
4 changes: 3 additions & 1 deletion debian/libmmlib1.symbols
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,7 @@ libmmlib.so.1 libmmlib1 #MINVER#
mm_fstat@MMLIB_1.0 1.2.0
mm_fsync@MMLIB_1.0 1.2.0
mm_ftruncate@MMLIB_1.0 1.2.0
mm_futimens@MMLIB_1.0 1.4.0
mm_get_basedir@MMLIB_1.0 1.2.0
mm_get_environ@MMLIB_1.0 1.2.0
mm_get_lasterror_desc@MMLIB_1.0 1.2.0
Expand Down Expand Up @@ -103,7 +104,7 @@ libmmlib.so.1 libmmlib1 #MINVER#
mm_shutdown@MMLIB_1.0 1.2.0
mm_socket@MMLIB_1.0 1.2.0
mm_spawn@MMLIB_1.0 1.2.0
mm_stat@MMLIB_1.0 1.2.0
mm_stat@MMLIB_1.0 1.4.0
mm_strerror@MMLIB_1.0 1.2.0
mm_strerror_r@MMLIB_1.0 1.2.0
mm_symlink@MMLIB_1.0 1.2.0
Expand All @@ -130,5 +131,6 @@ libmmlib.so.1 libmmlib1 #MINVER#
mm_unlink@MMLIB_1.0 1.2.0
mm_unmap@MMLIB_1.0 1.2.0
mm_unsetenv@MMLIB_1.0 1.2.0
mm_utimens@MMLIB_1.0 1.4.0
mm_wait_process@MMLIB_1.0 1.2.0
mm_write@MMLIB_1.0 1.2.0
5 changes: 4 additions & 1 deletion mmpack/libmmlib1.provides
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ sharedlib:
mm_close: 1.2.0
mm_closedir: 1.2.0
mm_connect: 1.2.0
mm_copy: 1.3.0
mm_create_sockclient: 1.2.0
mm_dirname: 1.2.0
mm_dl_fileext: 1.2.0
Expand All @@ -33,6 +34,7 @@ sharedlib:
mm_fstat: 1.2.0
mm_fsync: 1.2.0
mm_ftruncate: 1.2.0
mm_futimens: 1.4.0
mm_get_basedir: 1.2.0
mm_get_environ: 1.2.0
mm_get_lasterror_desc: 1.2.0
Expand Down Expand Up @@ -102,7 +104,7 @@ sharedlib:
mm_shutdown: 1.2.0
mm_socket: 1.2.0
mm_spawn: 1.2.0
mm_stat: 1.2.0
mm_stat: 1.4.0
mm_strerror: 1.2.0
mm_strerror_r: 1.2.0
mm_symlink: 1.2.0
Expand All @@ -129,6 +131,7 @@ sharedlib:
mm_unlink: 1.2.0
mm_unmap: 1.2.0
mm_unsetenv: 1.2.0
mm_utimens: 1.4.0
mm_wait_process: 1.2.0
mm_write: 1.2.0

2 changes: 1 addition & 1 deletion mmpack/specs
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name: mmlib
version: 1.3.0
version: 1.4.0
maintainer: nicolas.bourdaud@gmail.com
url: https://github.com/mmlabs-mindmaze/mmlib
licenses: [ Apache-2.0 ]
Expand Down
2 changes: 1 addition & 1 deletion src/meson.build
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ endif # windows
# * PATCH version when you make backwards-compatible bug fixes.

major = '1'
minor = '1'
minor = '2'
patch = '0'
version = major + '.' + minor + '.' + patch

Expand Down

0 comments on commit bdbda04

Please sign in to comment.