Skip to content

Commit

Permalink
Freeze v3.115.1 (#16121)
Browse files Browse the repository at this point in the history
To be merged after #16119 merges.

Tentative changelog:

- [backend] Fix concurrent reads from and writes to display resource
timer maps
  [#16101](#16101)

- [engine] Better handle property dependencies and deleted-with
relationships when pruning URNs, verifying snapshot integrity and
computing dependency graphs.
  [#16088](#16088)

- [programgen/python] Sort generated requirements.txt files when
generating Python programs
  [#16115](#16115)
  • Loading branch information
justinvp committed May 6, 2024
1 parent 89d3467 commit 4dbdf54
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.1
3.115.2
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.1",
"version": "3.115.2",
"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.1";
export const version = "3.115.2";
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.1"
_VERSION = "3.115.2"

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.1"
VERSION = "3.115.2"

def readme():
try:
Expand Down

0 comments on commit 4dbdf54

Please sign in to comment.