Skip to content

Commit

Permalink
docs: update changelog and release 0.5.5
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysztofzablocki committed Feb 8, 2017
1 parent 72d4f30 commit 1cc2854
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 2 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,19 @@
# Sourcery CHANGELOG

---
## 0.5.5

### New Features

- Sourcery will no longer write files if content didn't change, this improves behaviour of things depending on modification date like Xcode, Swiftlint.

### Internal changes

- Improved support for contained types

### Bug Fixes

- Fixes cache handling that got broken in 0.5.4

## 0.5.4

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.4"
s.version = "0.5.5"
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 @@ -11,7 +11,7 @@ import SwiftTryCatch
import Foundation

public class Sourcery {
public static let version: String = inUnitTests ? "Major.Minor.Patch" : "0.5.4"
public static let version: String = inUnitTests ? "Major.Minor.Patch" : "0.5.5"
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 1cc2854

Please sign in to comment.