Skip to content

Commit

Permalink
docs: increase version metadata to 0.4.4
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysztofzablocki committed Dec 20, 2016
1 parent a4de22a commit a2018a3
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

---

## Master
## 0.4.4

### New Features

Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

Expand Down
2 changes: 1 addition & 1 deletion Sourcery.podspec
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion Sourcery/Sourcery.swift
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit a2018a3

Please sign in to comment.