Skip to content

Commit f868c9a

Browse files
committedJan 23, 2020
2020.01.24, Version 1.34.2 (Stable)
Changes since version 1.34.1: * misc: adjust stalebot deadlines (Jameson Nash) * test: fix env-vars flakiness (cjihrig) * test: avoid truncating output lines (Jameson Nash) * darwin: stop calling SetApplicationIsDaemon() (Ben Noordhuis) * ibmi: implement uv_interface_addresses() (Xu Meng) * osx,fsevent: fix race during uv_loop_close (Jameson Nash) * osx,fsevent: clear pointer when deleting it [NFCI] (Jameson Nash) * Revert "aix: replace ECONNRESET with EOF if already closed" (Jameson Nash) * unix: handle uv__open_cloexec return value correctly (Anna Henningsen)
1 parent 02e7a78 commit f868c9a

File tree

3 files changed

+26
-3
lines changed

3 files changed

+26
-3
lines changed
 

‎ChangeLog

+23
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
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+
124
2020.01.13, Version 1.34.1 (Stable), 8aa5636ec72990bb2856f81e14c95813024a5c2b
225

326
Changes since version 1.34.0:

‎configure.ac

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
1414

1515
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])
1717
AC_CONFIG_MACRO_DIR([m4])
1818
m4_include([m4/libuv-extra-automake-flags.m4])
1919
m4_include([m4/as_case.m4])

‎include/uv/version.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@
3333
#define UV_VERSION_MAJOR 1
3434
#define UV_VERSION_MINOR 34
3535
#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 ""
3838

3939
#define UV_VERSION_HEX ((UV_VERSION_MAJOR << 16) | \
4040
(UV_VERSION_MINOR << 8) | \

0 commit comments

Comments
 (0)
Please sign in to comment.