Skip to content

Commit

Permalink
docs: update metadata for 1.2.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
krzysztofzablocki committed Feb 13, 2021
1 parent 8b4eb65 commit 46cbad0
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Sourcery CHANGELOG

---
## Master
## 1.2.0

### New Features
- `Self` reference is resolved to correct type. [Enchancement Request](https://github.com/krzysztofzablocki/Sourcery/issues/900)
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 = "1.1.1"
s.version = "1.2.0"
s.summary = "A tool that brings meta-programming to Swift, allowing you to code generate Swift code."

s.description = <<-DESC
Expand Down
4 changes: 2 additions & 2 deletions Sourcery.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -2200,7 +2200,7 @@
ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon;
CODE_SIGN_IDENTITY = "-";
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 1.1.1;
CURRENT_PROJECT_VERSION = 1.2.0;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
Expand All @@ -2222,7 +2222,7 @@
CLANG_ENABLE_CODE_COVERAGE = NO;
CODE_SIGN_IDENTITY = "-";
COMBINE_HIDPI_IMAGES = YES;
CURRENT_PROJECT_VERSION = 1.1.1;
CURRENT_PROJECT_VERSION = 1.2.0;
FRAMEWORK_SEARCH_PATHS = (
"$(inherited)",
"$(PROJECT_DIR)",
Expand Down
2 changes: 1 addition & 1 deletion SourceryFramework.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "SourceryFramework"
s.version = "1.1.1"
s.version = "1.2.0"
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 SourceryRuntime.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "SourceryRuntime"
s.version = "1.1.1"
s.version = "1.2.0"
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 SourceryUtils.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "SourceryUtils"
s.version = "1.1.1"
s.version = "1.2.0"
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 SourceryUtils/Sources/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import Foundation

public struct SourceryVersion {
public let value: String
public static let current = SourceryVersion(value: inUnitTests ? "Major.Minor.Patch" : "1.1.1")
public static let current = SourceryVersion(value: inUnitTests ? "Major.Minor.Patch" : "1.2.0")
}

public var inUnitTests = NSClassFromString("XCTest") != nil

0 comments on commit 46cbad0

Please sign in to comment.