Skip to content

Commit 5682215

Browse files
Version bump 4.1.0 (#88)
1 parent 92792dd commit 5682215

7 files changed

Lines changed: 16 additions & 19 deletions

File tree

.travis.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
# Change Log
22
All notable changes to ImageRow will be documented in this file.
33

4+
### [4.1.0](https://github.com/EurekaCommunity/ImageRow/releases/tag/4.1.0)
5+
<!-- Released on 2022-03-28. -->
6+
7+
* Allows setting a thumbnail image (#69)
8+
* Added possibility to change the default action sheet tint color
9+
* Add support for Swift Package Manager + Add Github Actions support to…
10+
* Update to Eureka version 5.3.5 (#87)
11+
* Several fixes (#84, #73, #70)
12+
413
### [4.0.0](https://github.com/EurekaCommunity/ImageRow/releases/tag/4.0.0)
514
<!-- Released on 2019-04-26. -->
615

ImageRow.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "ImageRow"
3-
s.version = "4.0.0"
3+
s.version = "4.1.0"
44
s.summary = "Eureka row that allows us to take or select a picture."
55
s.homepage = "https://github.com/EurekaCommunity/ImageRow"
66
s.license = { type: 'MIT', file: 'LICENSE' }

ImageRow.xcodeproj/project.pbxproj

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -371,6 +371,7 @@
371371
INFOPLIST_FILE = "$(SRCROOT)/Sources/Info.plist";
372372
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
373373
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
374+
MARKETING_VERSION = 4.1.0;
374375
PRODUCT_BUNDLE_IDENTIFIER = com.xmartlabs.ImageRow;
375376
PRODUCT_NAME = "$(TARGET_NAME)";
376377
SKIP_INSTALL = YES;
@@ -395,6 +396,7 @@
395396
INFOPLIST_FILE = "$(SRCROOT)/Sources/Info.plist";
396397
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
397398
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
399+
MARKETING_VERSION = 4.1.0;
398400
PRODUCT_BUNDLE_IDENTIFIER = com.xmartlabs.ImageRow;
399401
PRODUCT_NAME = "$(TARGET_NAME)";
400402
SKIP_INSTALL = YES;

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ let package = Package(
88
.library(name: "ImageRow", targets: ["ImageRow"])
99
],
1010
dependencies: [
11-
.package(url: "https://github.com/xmartlabs/Eureka.git", from: "5.2.0"),
11+
.package(url: "https://github.com/xmartlabs/Eureka.git", from: "5.3.5"),
1212
],
1313
targets: [
1414
.target(

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ You can also experiment and learn with the *ImageRow Playground* which is contai
8989
To install ImageRow, simply add the following line to your Podfile:
9090

9191
```ruby
92-
pod 'ImageRow', '~> 4.0'
92+
pod 'ImageRow', '~> 4.1'
9393
```
9494

9595
#### Carthage
@@ -99,7 +99,7 @@ pod 'ImageRow', '~> 4.0'
9999
To install ImageRow, simply add the following line to your Cartfile:
100100

101101
```ogdl
102-
github "EurekaCommunity/ImageRow" ~> 4.0
102+
github "EurekaCommunity/ImageRow" ~> 4.1
103103
```
104104

105105
## Customization

Sources/Info.plist

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515
<key>CFBundlePackageType</key>
1616
<string>FMWK</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.0.1</string>
18+
<string>$(MARKETING_VERSION)</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>

0 commit comments

Comments
 (0)