File tree 3 files changed +26
-3
lines changed
3 files changed +26
-3
lines changed Original file line number Diff line number Diff line change
1
+ 2020.01.24, Version 1.34.2 (Stable)
2
+
3
+ Changes since version 1.34.1:
4
+
5
+ * misc: adjust stalebot deadlines (Jameson Nash)
6
+
7
+ * test: fix env-vars flakiness (cjihrig)
8
+
9
+ * test: avoid truncating output lines (Jameson Nash)
10
+
11
+ * darwin: stop calling SetApplicationIsDaemon() (Ben Noordhuis)
12
+
13
+ * ibmi: implement uv_interface_addresses() (Xu Meng)
14
+
15
+ * osx,fsevent: fix race during uv_loop_close (Jameson Nash)
16
+
17
+ * osx,fsevent: clear pointer when deleting it [NFCI] (Jameson Nash)
18
+
19
+ * Revert "aix: replace ECONNRESET with EOF if already closed" (Jameson Nash)
20
+
21
+ * unix: handle uv__open_cloexec return value correctly (Anna Henningsen)
22
+
23
+
1
24
2020.01.13, Version 1.34.1 (Stable), 8aa5636ec72990bb2856f81e14c95813024a5c2b
2
25
3
26
Changes since version 1.34.0:
Original file line number Diff line number Diff line change 13
13
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
14
14
15
15
AC_PREREQ ( 2.57 )
16
- AC_INIT ( [ libuv] , [ 1.34.1 ] , [ https://github.com/libuv/libuv/issues] )
16
+ AC_INIT ( [ libuv] , [ 1.34.2 ] , [ https://github.com/libuv/libuv/issues] )
17
17
AC_CONFIG_MACRO_DIR ( [ m4] )
18
18
m4_include ( [ m4/libuv-extra-automake-flags.m4] )
19
19
m4_include ( [ m4/as_case.m4] )
Original file line number Diff line number Diff line change 33
33
#define UV_VERSION_MAJOR 1
34
34
#define UV_VERSION_MINOR 34
35
35
#define UV_VERSION_PATCH 2
36
- #define UV_VERSION_IS_RELEASE 0
37
- #define UV_VERSION_SUFFIX "dev "
36
+ #define UV_VERSION_IS_RELEASE 1
37
+ #define UV_VERSION_SUFFIX ""
38
38
39
39
#define UV_VERSION_HEX ((UV_VERSION_MAJOR << 16) | \
40
40
(UV_VERSION_MINOR << 8) | \
You can’t perform that action at this time.
0 commit comments