diff --git a/CHANGELOG.md b/CHANGELOG.md index 1bbdce3a6..e6ff88ae2 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ --- -## Master +## 0.4.4 ### New Features diff --git a/README.md b/README.md index a0fdf5565..cf7a39dce 100644 --- a/README.md +++ b/README.md @@ -222,6 +222,7 @@ For each type you can access following properties: - `name` <- name - `rawValue` <- raw value - `associatedValues` <- list of `AssociatedValue` +- `annotations` <- dictionary with configured [annotations](#source-annotations) **Enum.Case.AssociatedValue** provides: diff --git a/Sourcery.podspec b/Sourcery.podspec index 04aebd66b..f9819cfae 100644 --- a/Sourcery.podspec +++ b/Sourcery.podspec @@ -1,7 +1,7 @@ Pod::Spec.new do |s| s.name = "Sourcery" - s.version = "0.4.3" + s.version = "0.4.4" s.summary = "A tool that brings meta-programming to Swift, allowing you to code generate Swift code." s.description = <<-DESC diff --git a/Sourcery/Sourcery.swift b/Sourcery/Sourcery.swift index d21ae0b37..97a86e82b 100644 --- a/Sourcery/Sourcery.swift +++ b/Sourcery/Sourcery.swift @@ -37,7 +37,7 @@ internal class SourceryTemplate: Template { /// If you specify templatePath as a folder, it will create a Generated[TemplateName].swift file /// If you specify templatePath as specific file, it will put all generated results into that single file public class Sourcery { - public static let version: String = inUnitTests ? "Major.Minor.Patch" : "0.4.3" + public static let version: String = inUnitTests ? "Major.Minor.Patch" : "0.4.4" public static let generationMarker: String = "// Generated using Sourcery" let verbose: Bool