Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump all packages to 13.1.0 #5812

Merged
merged 10 commits into from
Sep 30, 2021
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Apply PR review changes
  • Loading branch information
theopnv committed Sep 29, 2021
commit 47990ae11e8d1aeccf7a3382c036b6ff7e70949b
2 changes: 1 addition & 1 deletion com.unity.render-pipelines.core/Runtime/Documentation.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public CoreRPHelpURLAttribute(string pageName, string packageName = "com.unity.r
/// </summary>
public class DocumentationInfo
{
const string fallbackVersion = "12.0";
const string fallbackVersion = "13.1";
const string url = "https://docs.unity3d.com/Packages/{0}@{1}/manual/{2}.html";

/// <summary>
Expand Down
2 changes: 1 addition & 1 deletion com.unity.render-pipelines.core/ShaderLibrary/Version.hlsl
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// User should rely on the Macro UNITY_VERSION now to detect which version of Unity is coupled to the current set of pipeline shader
// Example of usage #if UNITY_VERSION >= 202120 to check if the version is above or equal 2021.2
#define SHADER_LIBRARY_VERSION_MAJOR 13
#define SHADER_LIBRARY_VERSION_MINOR 0
#define SHADER_LIBRARY_VERSION_MINOR 1

#define VERSION_GREATER_EQUAL(major, minor) ((SHADER_LIBRARY_VERSION_MAJOR > major) || ((SHADER_LIBRARY_VERSION_MAJOR == major) && (SHADER_LIBRARY_VERSION_MINOR >= minor)))
#define VERSION_LOWER(major, minor) ((SHADER_LIBRARY_VERSION_MAJOR < major) || ((SHADER_LIBRARY_VERSION_MAJOR == major) && (SHADER_LIBRARY_VERSION_MINOR < minor)))
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [13.1.0] - 2021-09-24

Version Updated
The version number for this package has increased due to a version update of a related graphics package.

## [13.0.0] - 2021-09-01

Version Updated
Expand Down
3 changes: 3 additions & 0 deletions com.unity.visualeffectgraph/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,9 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.

## [13.1.0] - 2021-09-24

Version Updated
The version number for this package has increased due to a version update of a related graphics package.

## [13.0.0] - 2021-09-01

### Fixed
Expand Down