diff --git a/CHANGELOG.md b/CHANGELOG.md index fd6df1ab..e700b9d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,9 @@ -## Main +## 0.36.0 ##### Breaking -* None. +* Bazel users only: rules_swift 2.x is now required. + [Luis Padron](https://github.com/luispadron) ##### Enhancements diff --git a/MODULE.bazel b/MODULE.bazel index 792f8d80..70bbd03d 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,6 +1,6 @@ module( name = "sourcekitten", - version = "0.35.0", + version = "0.36.0", compatibility_level = 1, ) diff --git a/Source/SourceKittenFramework/Version.swift b/Source/SourceKittenFramework/Version.swift index 0d82ab8d..5c56c628 100644 --- a/Source/SourceKittenFramework/Version.swift +++ b/Source/SourceKittenFramework/Version.swift @@ -1,5 +1,5 @@ public struct Version { public let value: String - public static let current = Version(value: "0.35.0") + public static let current = Version(value: "0.36.0") }