diff --git a/CHANGELOG.md b/CHANGELOG.md index 1d3cd9f6..8e851c6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -## Main +## 0.34.0 ##### Breaking @@ -7,7 +7,8 @@ ##### Enhancements -* None. +* Added support for bzlmod. + [Keith Smiley](https://github.com/keith) ##### Bug Fixes diff --git a/MODULE.bazel b/MODULE.bazel index af0f0beb..bc6a3b90 100644 --- a/MODULE.bazel +++ b/MODULE.bazel @@ -1,6 +1,6 @@ module( name = "sourcekitten", - version = "0.33.2", + version = "0.34.0", compatibility_level = 1, ) diff --git a/Source/SourceKittenFramework/Version.swift b/Source/SourceKittenFramework/Version.swift index 2fd28aef..6acd2041 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.33.1") + public static let current = Version(value: "0.34.0") }