Skip to content

Commit

Permalink
Bump version to 1.2.0.0a1 and update Changes.md
Browse files Browse the repository at this point in the history
  • Loading branch information
johnhaddon committed Dec 20, 2022
1 parent 3fec467 commit cefe329
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions Changes.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
1.x.x.x
=======
1.2.0.0a1
=========

This version enables Cycles support by default, as we believe we have made sufficient progress to allow wider testing. We may continue to make behaviour-changing updates if necessary though, so support is not yet considered final.

Expand All @@ -8,6 +8,7 @@ This version enables Cycles support by default, as we believe we have made suffi
Features
--------

- Windows : Added official builds for Windows.
- Mute/Solo : Added the ability to mute and solo lights.
- A light can be muted by setting the `light:mute` attribute. If that attribute is not present, the light will not be muted.
- One or more lights can be enabled exclusively via membership in the `soloLights` set. If that set has one or more members, only the lights in that set will emit. If the set is empty, all lights emit according to their mute state. If a light is both muted and in the `soloLights` set, it will emit.
Expand Down Expand Up @@ -94,7 +95,7 @@ Breaking Changes
- StringPlug : `setValue( std::filesystem::path & )` now uses `path.generic_string()` for the value, whereas before an automatic conversion would have used `path.string()` (the native string).
- Dispatcher : the `jobDirectory()` Python binding now returns a `pathlib.Path`, or `None` if it is empty.
- Context::EditableScope, ImagePlug::ChannelDataScope, ScenePlug::PathScope/SetScope : Removed deprecated functions which don't take pointers and require duplicating data.
- ViewportGadget::gadgetsAt : Removed deprecated signature.
- ViewportGadget : Removed deprecated `gadgetsAt()` signature.

Build
-----
Expand Down
4 changes: 2 additions & 2 deletions SConstruct
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ gafferMilestoneVersion = 1 # for announcing major milestones - may contain all o
gafferMajorVersion = 2 # backwards-incompatible changes
gafferMinorVersion = 0 # new backwards-compatible features
gafferPatchVersion = 0 # bug fixes
gafferVersionSuffix = "" # used for alpha/beta releases : "a1", "b2", etc.
gafferVersionSuffix = "a1" # used for alpha/beta releases : "a1", "b2", etc.

# All of the following must be considered when determining
# whether or not a change is backwards-compatible
Expand Down Expand Up @@ -1255,7 +1255,7 @@ libraries = {
"cycles_session", "cycles_scene", "cycles_graph", "cycles_bvh", "cycles_device", "cycles_kernel", "cycles_kernel_osl",
"cycles_integrator", "cycles_util", "cycles_subd", "extern_sky",
"OpenImageIO$OIIO_LIB_SUFFIX", "OpenImageIO_Util$OIIO_LIB_SUFFIX", "oslexec$OSL_LIB_SUFFIX", "openvdb$VDB_LIB_SUFFIX",
"oslquery$OSL_LIB_SUFFIX", "Alembic", "osdCPU", "OpenColorIO$OCIO_LIB_SUFFIX", "embree3", "Iex",
"oslquery$OSL_LIB_SUFFIX", "Alembic", "osdCPU", "OpenColorIO$OCIO_LIB_SUFFIX", "embree3", "Iex",
],
"CXXFLAGS" : [ systemIncludeArgument, "$CYCLES_ROOT/include" ],
"CPPDEFINES" : [
Expand Down

0 comments on commit cefe329

Please sign in to comment.