Skip to content

Commit

Permalink
chore: Bump version to 4.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
l1Dan committed Sep 24, 2023
1 parent 1f0333b commit 43ef04f
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG.md

## 4.1.6
1. 适配 Xcode15
2. 移除 过期方法

## 4.1.6

1. fix: 移除 ViewControllers 中 rootViewController 之后,新的 rootViewController 返回按钮显示不正确问题 #16
Expand Down
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="18122" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="22154" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" launchScreen="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES" initialViewController="01J-lp-oVM">
<device id="retina6_1" orientation="portrait" appearance="light"/>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="18093"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="22130"/>
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
<capability name="System colors in document resources" minToolsVersion="11.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
Expand Down
5 changes: 2 additions & 3 deletions NXNavigationExtension.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |spec|

spec.name = 'NXNavigationExtension'
spec.version = '4.1.6'
spec.version = '4.1.7'
spec.summary = '🔥 Lightweight, simple, and easy-to-use NavigationBar library.'

spec.description = <<-DESC
Expand All @@ -15,10 +15,9 @@ Pod::Spec.new do |spec|
spec.author = { 'Leo Lee' => 'l1dan@hotmail.com' }
spec.social_media_url = 'https://github.com/l1Dan'

spec.ios.deployment_target = '11.0'
spec.ios.deployment_target = '12.0'
spec.default_subspec = 'Sources'
spec.swift_version = '5.0'
spec.module_map = 'NXNavigationExtension/module.modulemap'
spec.frameworks = 'UIKit'

spec.subspec 'Sources' do |ss|
Expand Down
8 changes: 4 additions & 4 deletions NXNavigationExtension.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -503,7 +503,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 4.1.6;
MARKETING_VERSION = 4.1.7;
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++17";
PRODUCT_BUNDLE_IDENTIFIER = io.github.l1dan.NXNavigationExtensionSwiftUI;
Expand Down Expand Up @@ -542,7 +542,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 4.1.6;
MARKETING_VERSION = 4.1.7;
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++17";
PRODUCT_BUNDLE_IDENTIFIER = io.github.l1dan.NXNavigationExtensionSwiftUI;
Expand Down Expand Up @@ -579,7 +579,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 4.1.6;
MARKETING_VERSION = 4.1.7;
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
PRODUCT_BUNDLE_IDENTIFIER = io.github.l1dan.NXNavigationExtension;
Expand Down Expand Up @@ -615,7 +615,7 @@
"@executable_path/Frameworks",
"@loader_path/Frameworks",
);
MARKETING_VERSION = 4.1.6;
MARKETING_VERSION = 4.1.7;
MODULE_VERIFIER_SUPPORTED_LANGUAGES = "objective-c objective-c++";
MODULE_VERIFIER_SUPPORTED_LANGUAGE_STANDARDS = "gnu11 gnu++14";
PRODUCT_BUNDLE_IDENTIFIER = io.github.l1dan.NXNavigationExtension;
Expand Down
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@

| Version | Minimum iOS / macOS Target | Frameworks | Note |
| :---------: | :------------------------: | :-------------------------: | :-----: |
| 4.1.7 Later | iOS 12.0 / macOS 10.15 | SwiftUI、UIKit、macCatalyst | Xcode15 |
| 4.1.5 Later | iOS 11.0 / macOS 10.15 | SwiftUI、UIKit、macCatalyst | Xcode14 |
| 4.1.4 | iOS 9.0 / macOS 10.15 | SwiftUI、UIKit、macCatalyst | Xcode13 |
| 3.x | iOS 9.0 / macOS 10.15 | UIKit、macCatalyst | / |
Expand Down Expand Up @@ -106,7 +107,7 @@ github "l1Dan/NXNavigationExtension"

```swift
dependencies: [
.package(url: "https://github.com/l1Dan/NXNavigationExtension.git", .upToNextMajor(from: "4.1.6"))
.package(url: "https://github.com/l1Dan/NXNavigationExtension.git", .upToNextMajor(from: "4.1.7"))
]
```

Expand Down

0 comments on commit 43ef04f

Please sign in to comment.