File tree Expand file tree Collapse file tree 7 files changed +18
-6
lines changed Expand file tree Collapse file tree 7 files changed +18
-6
lines changed Original file line number Diff line number Diff line change 1
- 1.3 .0
1
+ 1.4 .0
Original file line number Diff line number Diff line change 9
9
# - If any interfaces have been removed since the last public release, then
10
10
# set age to 0.
11
11
12
- m4_define ( [ lib_current] ,2 )
12
+ m4_define ( [ lib_current] ,3 )
13
13
m4_define ( [ lib_revision] ,0 )
14
14
m4_define ( [ lib_age] ,1 )
15
15
Original file line number Diff line number Diff line change
1
+ mmlib (1.4.0) unstable; urgency=medium
2
+
3
+ * Repurpose blksize field of mm_stat to expose atime.
4
+ * Add mm_futimens() and mm_utimens()
5
+
6
+ -- Nicolas Bourdaud <nicolas.bourdaud@gmail.com> Tue, 17 May 2022 08:23:53 +0200
7
+
1
8
mmlib (1.3.0) unstable; urgency=medium
2
9
3
10
* Add mm_copy().
Original file line number Diff line number Diff line change @@ -34,6 +34,7 @@ libmmlib.so.1 libmmlib1 #MINVER#
34
34
mm_fstat@MMLIB_1.0 1.2.0
35
35
mm_fsync@MMLIB_1.0 1.2.0
36
36
mm_ftruncate@MMLIB_1.0 1.2.0
37
+ mm_futimens@MMLIB_1.0 1.4.0
37
38
mm_get_basedir@MMLIB_1.0 1.2.0
38
39
mm_get_environ@MMLIB_1.0 1.2.0
39
40
mm_get_lasterror_desc@MMLIB_1.0 1.2.0
@@ -103,7 +104,7 @@ libmmlib.so.1 libmmlib1 #MINVER#
103
104
mm_shutdown@MMLIB_1.0 1.2.0
104
105
mm_socket@MMLIB_1.0 1.2.0
105
106
mm_spawn@MMLIB_1.0 1.2.0
106
- mm_stat@MMLIB_1.0 1.2 .0
107
+ mm_stat@MMLIB_1.0 1.4 .0
107
108
mm_strerror@MMLIB_1.0 1.2.0
108
109
mm_strerror_r@MMLIB_1.0 1.2.0
109
110
mm_symlink@MMLIB_1.0 1.2.0
@@ -130,5 +131,6 @@ libmmlib.so.1 libmmlib1 #MINVER#
130
131
mm_unlink@MMLIB_1.0 1.2.0
131
132
mm_unmap@MMLIB_1.0 1.2.0
132
133
mm_unsetenv@MMLIB_1.0 1.2.0
134
+ mm_utimens@MMLIB_1.0 1.4.0
133
135
mm_wait_process@MMLIB_1.0 1.2.0
134
136
mm_write@MMLIB_1.0 1.2.0
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ sharedlib:
19
19
mm_close : 1.2.0
20
20
mm_closedir : 1.2.0
21
21
mm_connect : 1.2.0
22
+ mm_copy : 1.3.0
22
23
mm_create_sockclient : 1.2.0
23
24
mm_dirname : 1.2.0
24
25
mm_dl_fileext : 1.2.0
@@ -33,6 +34,7 @@ sharedlib:
33
34
mm_fstat : 1.2.0
34
35
mm_fsync : 1.2.0
35
36
mm_ftruncate : 1.2.0
37
+ mm_futimens : 1.4.0
36
38
mm_get_basedir : 1.2.0
37
39
mm_get_environ : 1.2.0
38
40
mm_get_lasterror_desc : 1.2.0
@@ -102,7 +104,7 @@ sharedlib:
102
104
mm_shutdown : 1.2.0
103
105
mm_socket : 1.2.0
104
106
mm_spawn : 1.2.0
105
- mm_stat : 1.2 .0
107
+ mm_stat : 1.4 .0
106
108
mm_strerror : 1.2.0
107
109
mm_strerror_r : 1.2.0
108
110
mm_symlink : 1.2.0
@@ -129,6 +131,7 @@ sharedlib:
129
131
mm_unlink : 1.2.0
130
132
mm_unmap : 1.2.0
131
133
mm_unsetenv : 1.2.0
134
+ mm_utimens : 1.4.0
132
135
mm_wait_process : 1.2.0
133
136
mm_write : 1.2.0
134
137
Original file line number Diff line number Diff line change 1
1
name: mmlib
2
- version: 1.3 .0
2
+ version: 1.4 .0
3
3
maintainer: nicolas.bourdaud@gmail.com
4
4
url: https://github.com/mmlabs-mindmaze/mmlib
5
5
licenses: [ Apache-2.0 ]
Original file line number Diff line number Diff line change @@ -138,7 +138,7 @@ endif # windows
138
138
# * PATCH version when you make backwards-compatible bug fixes.
139
139
140
140
major = ' 1'
141
- minor = ' 1 '
141
+ minor = ' 2 '
142
142
patch = ' 0'
143
143
version = major + ' .' + minor + ' .' + patch
144
144
You can’t perform that action at this time.
0 commit comments