Skip to content

Commit

Permalink
chore: fix version to 0.4.2
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysztofzablocki committed Dec 19, 2016
1 parent 8590442 commit dfe2937
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
3 changes: 1 addition & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
# Sourcery CHANGELOG

---

## master
## 0.4.2

### Bug Fixes

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.2"
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 @@ -20,7 +20,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.2"
public static let generationMarker: String = "// Generated using Sourcery"

let verbose: Bool
Expand Down

0 comments on commit dfe2937

Please sign in to comment.