Skip to content

Commit

Permalink
Clean up README and bump version in Info.plist 💄 (#235)
Browse files Browse the repository at this point in the history
## Changes

- Clean up README.md by fixing/updating badges and adding correct
versions to dependency managers snippets.

- Update version in Info.plist
  • Loading branch information
p4checo authored May 11, 2021
1 parent c1744c6 commit ac50c68
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 25 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@
[![license](https://img.shields.io/badge/license-MIT-lightgrey.svg)](https://github.com/Mindera/Alicerce/blob/master/LICENSE)
[![release](https://img.shields.io/github/release/Mindera/Alicerce.svg)](https://github.com/Mindera/Alicerce/releases)
![platforms](https://img.shields.io/badge/platforms-iOS-lightgrey.svg)
[![Swift 5](https://img.shields.io/badge/Swift-5-orange.svg?style=flat)](https://developer.apple.com/swift/)
[![Swift 5.3](https://img.shields.io/badge/Swift-5.3-orange.svg?style=flat)](https://developer.apple.com/swift/)
[![Carthage](https://img.shields.io/badge/Carthage-compatible-4BC51D.svg?style=flat)](https://github.com/Carthage/Carthage)
[![CocoaPods](https://img.shields.io/cocoapods/v/Alicerce.svg)](https://cocoapods.org/)
[![SwiftPM](https://img.shields.io/badge/SwiftPM-compatible-orange.svg)](#swift-package-manager)
[![Build Status](https://travis-ci.org/Mindera/Alicerce.svg?branch=master)](https://travis-ci.org/Mindera/Alicerce)
[![CI](https://github.com/Mindera/Alicerce/actions/workflows/ci.yml/badge.svg)](https://github.com/Mindera/Alicerce/actions/workflows/ci.yml)
[![codecov](https://codecov.io/gh/Mindera/Alicerce/branch/master/graph/badge.svg)](https://codecov.io/gh/Mindera/Alicerce)
[![Join the chat at https://gitter.im/Mindera/Alicerce](https://badges.gitter.im/Mindera/Alicerce.svg)](https://gitter.im/Mindera/Alicerce?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

Expand Down Expand Up @@ -103,15 +103,15 @@ TODO
If you use [CocoaPods][] to manage your dependencies, simply add Alicerce to your `Podfile`:

```ruby
pod 'Alicerce', '~> 0.9'
pod 'Alicerce', '~> 0.11.0'
```

### Carthage

If you use [Carthage][] to manage your dependencies, simply add Alicerce to your `Cartfile`:

```
github "Mindera/Alicerce" ~> 0.9
github "Mindera/Alicerce" ~> 0.11.0
```

If you use Carthage to build your dependencies, make sure you have added `Alicerce.framework` to the
Expand All @@ -123,7 +123,7 @@ phase.
If you use Swift Package Manager, simply add Alicerce as a dependency of your package in `Package.swift`:

```swift
.package(url: "https://github.com/Mindera/Alicerce.git", from: "0.9.0"),
.package(url: "https://github.com/Mindera/Alicerce.git", from: "0.11.0"),
```

### git Submodule
Expand Down
41 changes: 21 additions & 20 deletions Resources/Info.plist
Original file line number Diff line number Diff line change
@@ -1,25 +1,26 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
<string></string>
<key>CFBundleDevelopmentRegion</key>
<string>en</string>
<key>CFBundleExecutable</key>
<string>$(EXECUTABLE_NAME)</string>
<key>CFBundleIdentifier</key>
<string>$(PRODUCT_BUNDLE_IDENTIFIER)</string>
<key>CFBundleInfoDictionaryVersion</key>
<string>6.0</string>
<key>CFBundleName</key>
<string>$(PRODUCT_NAME)</string>
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>0.11.0</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
<string></string>
</dict>
</plist>

0 comments on commit ac50c68

Please sign in to comment.