Skip to content

Commit

Permalink
Prepare for v3.116.0 release (#16158)
Browse files Browse the repository at this point in the history
Tentative changelog:

### Bug Fixes

- [engine] Fix dataraces between snapshot and deployment systems.
  [#16148](#16148)

- [cli/display] Fix mangled diffs of strings containing url-encoded
chars
  [#16147](#16147)

- [sdk/nodejs] Don't load punycode module in function serialization code
  [#16149](#16149)

- [sdk/python] Fix typings for `from_input` and `all` to not return
`Never` types.
  [#16139](#16139)

- [sdk/python] Fix a race condition in output handling
  [#16155](#16155)
  • Loading branch information
justinvp committed May 10, 2024
1 parent ee4ca16 commit 2d63e0a
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion sdk/.version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.115.3
3.116.0
2 changes: 1 addition & 1 deletion sdk/nodejs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@pulumi/pulumi",
"version": "3.115.3",
"version": "3.116.0",
"description": "Pulumi's Node.js SDK",
"license": "Apache-2.0",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion sdk/nodejs/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,4 @@
// See the License for the specific language governing permissions and
// limitations under the License.

export const version = "3.115.3";
export const version = "3.116.0";
2 changes: 1 addition & 1 deletion sdk/python/lib/pulumi/_version.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

from semver import VersionInfo

_VERSION = "3.115.3"
_VERSION = "3.116.0"

version = VersionInfo.parse(_VERSION)
"""Version is the Pulumi SDK's release version."""
2 changes: 1 addition & 1 deletion sdk/python/lib/setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
import os
from setuptools import find_packages, setup

VERSION = "3.115.3"
VERSION = "3.116.0"

def readme():
try:
Expand Down

0 comments on commit 2d63e0a

Please sign in to comment.