Skip to content

Commit e73bee9

Browse files
committed
Bump version to 1.0.4
Signed-off-by: Jordan Jacobelli <[email protected]>
1 parent 9f19b65 commit e73bee9

File tree

4 files changed

+37
-22
lines changed

4 files changed

+37
-22
lines changed

pkg/deb/changelog

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
libnvidia-container (1.0.4-1) UNRELEASED; urgency=medium
2+
3+
* 61bfaf38 Update DSL to output the first element instead of the last in case of failure
4+
* 5ce32c6c Add initial support for Optix
5+
* acc38a22 Fix execveat typo
6+
* b5e491b1 arm64: Add support for AARCH64 architecture
7+
8+
-- NVIDIA CORPORATION <[email protected]> Wed, Aug 21 2019 16:48:40 -0700
9+
110
libnvidia-container (1.0.3-1) UNRELEASED; urgency=medium
211

312
* b9545d7 Add support for Vulkan
Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,21 @@
11
libnvidia-container.so.1 libnvidia-container1 #MINVER#
2-
NVC_1.0@NVC_1.0 1.0.3
3-
nvc_config_free@NVC_1.0 1.0.3
4-
nvc_config_new@NVC_1.0 1.0.3
5-
nvc_container_config_free@NVC_1.0 1.0.3
6-
nvc_container_config_new@NVC_1.0 1.0.3
7-
nvc_container_free@NVC_1.0 1.0.3
8-
nvc_container_new@NVC_1.0 1.0.3
9-
nvc_context_free@NVC_1.0 1.0.3
10-
nvc_context_new@NVC_1.0 1.0.3
11-
nvc_device_info_free@NVC_1.0 1.0.3
12-
nvc_device_info_new@NVC_1.0 1.0.3
13-
nvc_device_mount@NVC_1.0 1.0.3
14-
nvc_driver_info_free@NVC_1.0 1.0.3
15-
nvc_driver_info_new@NVC_1.0 1.0.3
16-
nvc_driver_mount@NVC_1.0 1.0.3
17-
nvc_error@NVC_1.0 1.0.3
18-
nvc_init@NVC_1.0 1.0.3
19-
nvc_ldcache_update@NVC_1.0 1.0.3
20-
nvc_shutdown@NVC_1.0 1.0.3
21-
nvc_version@NVC_1.0 1.0.3
2+
NVC_1.0@NVC_1.0 1.0.4
3+
nvc_config_free@NVC_1.0 1.0.4
4+
nvc_config_new@NVC_1.0 1.0.4
5+
nvc_container_config_free@NVC_1.0 1.0.4
6+
nvc_container_config_new@NVC_1.0 1.0.4
7+
nvc_container_free@NVC_1.0 1.0.4
8+
nvc_container_new@NVC_1.0 1.0.4
9+
nvc_context_free@NVC_1.0 1.0.4
10+
nvc_context_new@NVC_1.0 1.0.4
11+
nvc_device_info_free@NVC_1.0 1.0.4
12+
nvc_device_info_new@NVC_1.0 1.0.4
13+
nvc_device_mount@NVC_1.0 1.0.4
14+
nvc_driver_info_free@NVC_1.0 1.0.4
15+
nvc_driver_info_new@NVC_1.0 1.0.4
16+
nvc_driver_mount@NVC_1.0 1.0.4
17+
nvc_error@NVC_1.0 1.0.4
18+
nvc_init@NVC_1.0 1.0.4
19+
nvc_ldcache_update@NVC_1.0 1.0.4
20+
nvc_shutdown@NVC_1.0 1.0.4
21+
nvc_version@NVC_1.0 1.0.4

pkg/rpm/SPECS/libnvidia-container.spec

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,12 @@ This package contains command-line tools that facilitate using the library.
8585
%{_bindir}/*
8686

8787
%changelog
88+
* Wed Aug 21 2019 NVIDIA CORPORATION <[email protected]> 1.0.4-1
89+
- 61bfaf38 Update DSL to output the first element instead of the last in case of failure
90+
- 5ce32c6c Add initial support for Optix
91+
- acc38a22 Fix execveat typo
92+
- b5e491b1 arm64: Add support for AARCH64 architecture
93+
8894
* Thu Jul 18 2019 NVIDIA CORPORATION <[email protected]> 1.0.3-1
8995
- b9545d7 Add support for Vulkan
9096

src/nvc.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ extern "C" {
1515

1616
#define NVC_MAJOR 1
1717
#define NVC_MINOR 0
18-
#define NVC_PATCH 3
19-
#define NVC_VERSION "1.0.3"
18+
#define NVC_PATCH 4
19+
#define NVC_VERSION "1.0.4"
2020

2121
#define NVC_ARG_MAX 256
2222

0 commit comments

Comments
 (0)