Skip to content
This repository has been archived by the owner on Sep 30, 2024. It is now read-only.

Commit

Permalink
Merge branch 'release/1.9.3' into versions
Browse files Browse the repository at this point in the history
  • Loading branch information
Jeehut committed Oct 15, 2021
2 parents 630ad7b + 931df1e commit e410844
Show file tree
Hide file tree
Showing 6 changed files with 13 additions and 12 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@ If needed, pluralize to `Tasks`, `PRs` or `Authors` and list multiple entries se
### Security
- None.

## [1.9.3] - 2021-10-15
### Fixed
- Fixed a warning due to a wrong path in the Swift package manifest.

## [1.9.2] - 2020-05-07
### Added
- Made `cornerRadius` and `IBDesignable`s available for override.
Expand Down
3 changes: 1 addition & 2 deletions Frameworks/HandyUIKit/NibLoadable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,7 @@ extension NibLoadable where Self: UIView {
/// Loads the contents of this view from the corresponding Nib file.
///
/// NOTE: This view must be the 'File's Owner', not the 'View' within the Nib file.
public func loadFromNib() throws {
let bundle = Bundle(for: type(of: self))
public func loadFromNib(bundle: Bundle) throws {
let nibName = Self.nibName
let nib = UINib(nibName: nibName, bundle: bundle)

Expand Down
2 changes: 1 addition & 1 deletion Frameworks/SupportingFiles/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>1.9.2</string>
<string>1.9.3</string>
<key>CFBundleVersion</key>
<string>$(CURRENT_PROJECT_VERSION)</string>
<key>NSPrincipalClass</key>
Expand Down
2 changes: 1 addition & 1 deletion HandyUIKit.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "HandyUIKit"
s.version = "1.9.2"
s.version = "1.9.3"
s.summary = "Handy UI features that should have been part of UIKit in the first place."

s.description = <<-DESC
Expand Down
8 changes: 3 additions & 5 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// swift-tools-version:4.2
// swift-tools-version:5.3
import PackageDescription

let package = Package(
Expand All @@ -9,13 +9,11 @@ let package = Package(
targets: [
.target(
name: "HandyUIKit",
path: "Frameworks/HandyUIKit",
exclude: ["Frameworks/SupportingFiles"]
path: "Frameworks/HandyUIKit"
),
.testTarget(
name: "HandyUIKitTests",
dependencies: ["HandyUIKit"],
exclude: ["Tests/SupportingFiles"]
dependencies: ["HandyUIKit"]
)
]
)
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<p align="center">
<img src="https://github.com/Dschee/HandyUIKit/blob/stable/Logo.png?raw=true"
<img src="https://github.com/Dschee/HandyUIKit/blob/main/Logo.png?raw=true"
width=600>
</p>

Expand All @@ -13,8 +13,8 @@ width=600>
alt="codebeat badge">
</a>
<a href="https://github.com/Flinesoft/HandyUIKit/releases">
<img src="https://img.shields.io/badge/Version-1.9.2-blue.svg"
alt="Version: 1.9.2">
<img src="https://img.shields.io/badge/Version-1.9.3-blue.svg"
alt="Version: 1.9.3">
</a>
<img src="https://img.shields.io/badge/Swift-5.0-FFAC45.svg"
alt="Swift: 5.0">
Expand Down

0 comments on commit e410844

Please sign in to comment.