Skip to content

Commit

Permalink
Pod-Merge 0.0.4
Browse files Browse the repository at this point in the history
- Automatically adds the `MergeFile` to your generated Pods project (just like your `Podfile`)
- Adds support for fixing Swift modular imports (`import xxxx`) when the `has_dependencies!` flag is specified
- Adds a group using `swift_version!` & `has_dependencies!` flags in the example project
  • Loading branch information
Siddharth Gupta committed Nov 9, 2019
1 parent f0f080d commit c9830f8
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 4 deletions.
10 changes: 9 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,19 @@
# Change Log

## [0.0.4](https://github.com/grab/cocoapods-pod-merge/releases/tag/0.0.4)

Released on 2019-11-09.

- Automatically adds the `MergeFile` to your generated Pods project (just like your `Podfile`)
- Adds support for fixing Swift modular imports (`import xxxx`) when the `has_dependencies!` flag is specified [#10](https://github.com/grab/cocoapods-pod-merge/issues/10)
- Adds a group using `swift_version!` & `has_dependencies!` flags in the [example project](https://github.com/grab/cocoapods-pod-merge/tree/master/PodMergeExample)

## [0.0.3](https://github.com/grab/cocoapods-pod-merge/releases/tag/0.0.3)

Released on 2019-11-06.

- Adds a new flag `swift_version!` to manually set the Swift version of a merge group [#5](https://github.com/grab/cocoapods-pod-merge/issues/5)
- Fixes an issue with the `.modulemap` unable to compile when a pod contains `+` in it's name. [#8](https://github.com/grab/cocoapods-pod-merge/issues/8)
- Fixes an issue with the `.modulemap` unable to compile when a pod contains `+` in it's name [#8](https://github.com/grab/cocoapods-pod-merge/issues/8)

## [0.0.2](https://github.com/grab/cocoapods-pod-merge/releases/tag/0.0.2)
Released on 2019-10-28.
Expand Down
2 changes: 1 addition & 1 deletion Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: .
specs:
cocoapods-pod-merge (0.0.3)
cocoapods-pod-merge (0.0.4)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion PodMergeExample/Gemfile.lock
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
PATH
remote: ..
specs:
cocoapods-pod-merge (0.0.3)
cocoapods-pod-merge (0.0.4)

GEM
remote: https://rubygems.org/
Expand Down
2 changes: 1 addition & 1 deletion lib/cocoapods-pod-merge/gem_version.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
# Use of this source code is governed by an MIT-style license that can be found in the LICENSE file

module CocoapodsPodMerge
VERSION = "0.0.3"
VERSION = "0.0.4"
end

0 comments on commit c9830f8

Please sign in to comment.