Skip to content

Commit 236c2c5

Browse files
Merge pull request #1198 from andrewkaufman/rb102releasePrep
RB 10.2 Release Prep
2 parents daf6834 + 6a1b0b9 commit 236c2c5

File tree

4 files changed

+16
-6
lines changed

4 files changed

+16
-6
lines changed

.github/PULL_REQUEST_TEMPLATE.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Generally describe what this PR will do, and why it is needed.
1616

1717
### Checklist ###
1818

19-
- [ ] I have read the [contribution guidelines](https://github.com/ImageEngine/cortex/blob/master/CONTRIBUTING.md).
19+
- [ ] I have read the [contribution guidelines](https://github.com/ImageEngine/cortex/blob/main/CONTRIBUTING.md).
2020
- [ ] I have updated the documentation, if applicable.
2121
- [ ] I have tested my change(s) in the test suite, and added new test cases where necessary.
2222
- [ ] My code follows the Cortex project's prevailing coding style and conventions.

.github/workflows/main.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,11 +4,11 @@ on:
44
workflow_dispatch:
55
push:
66
branches:
7-
- master
7+
- main
88
- 'RB-*'
99
pull_request:
1010
branches:
11-
- master
11+
- main
1212
- 'RB-*'
1313
release:
1414
types: [published]

Changes

+12-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
10.2.x.x (relative to 10.2.2.0)
1+
10.2.3.0 (relative to 10.2.2.0)
22
========
33

44
Improvements
@@ -9,11 +9,21 @@ Improvements
99
- It will limit the time samples to the frame range supplied via SdfFileFormatArgs.
1010
- TBB binding : Added Python binding for `tbb_global_control.active_value()` (#1189).
1111
- IECoreNuke : Removed Op menu (#1186).
12+
- IECoreHoudini : Python 3 Support (#1196).
1213

1314
Fixes
1415
----
1516

16-
- IECoreAlembic : Fixed reading/writing indexed UVs for curves (#1179)
17+
- IECore.IgnoredExceptions : Fixed python 3 traceback lifetime issue (#1195).
18+
- IECoreAlembic : Fixed reading/writing indexed UVs for curves (#1179).
19+
- IECoreUSD USDScene : Fixed custom attribute hashing (#1197).
20+
21+
Build
22+
----
23+
24+
- CI (#1190) :
25+
- All tests run via GitHub Actions, removed Azure & Appveyor testing.
26+
- Windows : Now running core, scene, and image tests.
1727

1828
10.2.2.0 (relative to 10.2.1.0)
1929
========

SConstruct

+1-1
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ SConsignFile()
5656

5757
ieCoreMilestoneVersion = 10 # for announcing major milestones - may contain all of the below
5858
ieCoreMajorVersion = 2 # backwards-incompatible changes
59-
ieCoreMinorVersion = 2 # new backwards-compatible features
59+
ieCoreMinorVersion = 3 # new backwards-compatible features
6060
ieCorePatchVersion = 0 # bug fixes
6161
ieCoreVersionSuffix = "" # used for alpha/beta releases. Example: "a1", "b2", etc.
6262

0 commit comments

Comments
 (0)