Release 3.4.1 RC1

This commit is contained in:
David G Yu 2020-03-23 18:23:51 -07:00
parent b9217c7929
commit e6963dac5a
2 changed files with 28 additions and 3 deletions

View File

@ -34,6 +34,31 @@
Release 3.4 Release 3.4
~~~~~~~~~~~ ~~~~~~~~~~~
Release 3.4.1 - Mar 2020
========================
Release 3.4.1 is a minor release including bug fixes and configuration improvements
**Changes**
- GLEW is no longer required by default (GitHub #1183 #1184)
- Removed false Ptex link dependency from libosdCPU (GitHub #1174)
- Removed false GLFW link dependency from DX11 and Metal examples (GitHub #1178)
- Removed link dependency on unused TBB libraries (GitHub #1064)
- Added option to disable building of dynamic shared libraries (GitHub #1169)
- Added new tutorial for Far::LimitStencilTable (GitHub #1176)
- Updated use of EXT_direct_state_access to ARB_direct_state_access (GitHub #1184)
- Fixed C++ strict aliasing warnings (GitHub #1182)
- Fixed MSVC warnings in example code (GitHub #1158 #1172)
- Fixed compatibility with Visual Studio 2019 (GitHub #1173 #1189)
- Fixed CMake CMP0054 warnings (GitHub #1180)
- Added prefix to OpenSubdiv CMake macros (GitHub #1157)
- Moved utilities in examples/common to regression/common (GitHub #1167)
- Minor fixes to Far tutorials (GitHub #1175 #1177)
- Switched to Azure Pipelines for continuous integration testing instead of Travis-CI and AppVeyor (GitHub #1168 #1190)
**Bug Fixes**
- Fixed selective boundary interpolation for case Sdc::Options::VTX_BOUNDARY_NONE (GitHub #1170 #1171)
Release 3.4.0 - Jun 2019 Release 3.4.0 - Jun 2019
======================== ========================

View File

@ -25,13 +25,13 @@
#ifndef OPENSUBDIV3_VERSION_H #ifndef OPENSUBDIV3_VERSION_H
#define OPENSUBDIV3_VERSION_H #define OPENSUBDIV3_VERSION_H
#define OPENSUBDIV_VERSION v3_4_0 #define OPENSUBDIV_VERSION v3_4_1
#define OPENSUBDIV_VERSION_NUMBER 30400 #define OPENSUBDIV_VERSION_NUMBER 30401
#define OPENSUBDIV_VERSION_MAJOR 3 #define OPENSUBDIV_VERSION_MAJOR 3
#define OPENSUBDIV_VERSION_MINOR 4 #define OPENSUBDIV_VERSION_MINOR 4
#define OPENSUBDIV_VERSION_PATCH 0 #define OPENSUBDIV_VERSION_PATCH 1
namespace OpenSubdiv { namespace OpenSubdiv {
namespace OPENSUBDIV_VERSION { namespace OPENSUBDIV_VERSION {