Skip to content

Commit

Permalink
Merge pull request #24 from faberNovel/release/2.1.0
Browse files Browse the repository at this point in the history
Release/2.1.0
  • Loading branch information
alexandre-pod authored Apr 26, 2024
2 parents c0466d0 + dc22897 commit e7915f2
Show file tree
Hide file tree
Showing 8 changed files with 62 additions and 4 deletions.
7 changes: 7 additions & 0 deletions .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion ADNavigationBarExtension.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@

Pod::Spec.new do |s|
s.name = 'ADNavigationBarExtension'
s.version = '2.0.0'
s.version = '2.1.0'
s.author = 'Fabernovel Technologies'
s.homepage = 'https://fabernovel.com/'
s.summary = 'ADNavigationBarExtension is a UI library written in Swift to show and hide an extension to your UINavigationBar'
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
## [Unreleased]

## [2.1.0] - 2024-04-26

### Added
- Add support for Swift Package Manager

## [2.0.0] - 2024-03-04

### Changed
Expand Down
2 changes: 1 addition & 1 deletion NavigationBarExtension/Classes/UIToolbar+Appearance.swift
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
// Created by Samuel Gallet on 29/01/2020.
//

import Foundation
import UIKit

extension UIToolbar {

Expand Down
14 changes: 14 additions & 0 deletions Package.resolved
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
{
"pins" : [
{
"identity" : "adutils",
"kind" : "remoteSourceControl",
"location" : "[email protected]:faberNovel/ADUtils.git",
"state" : {
"revision" : "791ccbdb9dccff3ada11c0711f3cbcd57919292e",
"version" : "12.1.1"
}
}
],
"version" : 2
}
28 changes: 28 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
// swift-tools-version:5.7

import PackageDescription

let package = Package(
name: "ADNavigationBarExtension",
platforms: [
.iOS(.v14)
],
products: [
.library(
name: "ADNavigationBarExtension",
targets: ["ADNavigationBarExtension"]
)
],
dependencies: [
.package(url: "[email protected]:faberNovel/ADUtils.git", from: "12.1.0"),
],
targets: [
.target(
name: "ADNavigationBarExtension",
dependencies: [
.product(name: "ADUtils", package: "ADUtils"),
],
path: "NavigationBarExtension/Classes"
)
]
)
4 changes: 2 additions & 2 deletions Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- ADNavigationBarExtension (2.0.0):
- ADNavigationBarExtension (2.1.0):
- ADUtils (~> 12.0)
- ADUtils (12.1.1):
- ADUtils/objc (= 12.1.1)
Expand All @@ -23,7 +23,7 @@ EXTERNAL SOURCES:
:path: "./"

SPEC CHECKSUMS:
ADNavigationBarExtension: 1be9d794fb7715b7d1bfa5158ddcabe176ffb769
ADNavigationBarExtension: 2ad2f76c4462f7be55013d8ceeb71eaa6d65fe28
ADUtils: a3e9fdcfe76222dd3abfa4659ad1e8249ed16c95
SwiftLint: 5ce4d6a8ff83f1b5fd5ad5dbf30965d35af65e44

Expand Down
4 changes: 4 additions & 0 deletions fastlane/Fastfile
Original file line number Diff line number Diff line change
Expand Up @@ -114,3 +114,7 @@ end
def target_version_from_branch
git_branch.gsub(/release\/[A-Za-z]*/, "")
end

def pod_install
sh "bundle exec pod install"
end

0 comments on commit e7915f2

Please sign in to comment.