Skip to content

Commit

Permalink
chore: metadata update for 0.5.2 release
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysztofzablocki committed Jan 9, 2017
1 parent 47d9ce7 commit 862a954
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
7 changes: 2 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Sourcery CHANGELOG

---
## Master
## 0.5.2

### New Features

Expand All @@ -11,10 +11,7 @@
- Added `annotated` filter to filter by annotations
- Added negative filters counterparts
- Added support for attributes, i.e. `@escaping`

## 0.5.1

- Swift Templates are now supported
- Experimental support for Swift Templates

```
<% for type in types.classes { %>
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.5.1"
s.version = "0.5.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 @@ -14,7 +14,7 @@ import Foundation
/// 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.5.1"
public static let version: String = inUnitTests ? "Major.Minor.Patch" : "0.5.2"
public static let generationMarker: String = "// Generated using Sourcery"
public static let generationHeader = "\(Sourcery.generationMarker) \(Sourcery.version) — https://github.com/krzysztofzablocki/Sourcery\n"
+ "// DO NOT EDIT\n\n"
Expand Down

0 comments on commit 862a954

Please sign in to comment.