Skip to content

Commit

Permalink
chore: adjust README for release
Browse files Browse the repository at this point in the history
  • Loading branch information
benjohnde committed Oct 6, 2023
1 parent 6a6aeda commit 510db5f
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 4 deletions.
3 changes: 3 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,9 @@ let package = Package(
.headerSearchPath("qrcode/encoder"),
.headerSearchPath("qrcode/multi"),
.headerSearchPath("qrcode/multi/detector"),
],
linkerSettings: [
.unsafeFlags(["-fprofile-instr-generate"])
]
)
]
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ ZXingObjC currently has feature parity with ZXing version 3.3.3.

## Requirements

ZXingObjC requires Xcode 8.3.3 and above, targeting either iOS 11.0 and above, or Mac OS X 10.15 Catalina and above.
ZXingObjC requires Xcode 13.0 and above, targeting either iOS 11.0 and above, or Mac OS X 10.15 Catalina and above.

## Usage

Expand Down Expand Up @@ -87,7 +87,7 @@ We highly recommend Carthage as module manager.
ZXingObjC can be installed using [Carthage](https://github.com/Carthage/Carthage). After installing Carthage just add ZXingObjC to your Cartfile:

```ogdl
github "zxingify/zxingify-objc" ~> 3.6.8
github "zxingify/zxingify-objc" ~> 3.6.9
```

#### CocoaPods
Expand All @@ -96,7 +96,7 @@ github "zxingify/zxingify-objc" ~> 3.6.8

```ruby
platform :ios, '11.0'
pod 'ZXingObjC', '~> 3.6.8'
pod 'ZXingObjC', '~> 3.6.9'
```

## Examples
Expand Down
3 changes: 2 additions & 1 deletion ZXingObjC.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'ZXingObjC'
s.version = '3.6.8'
s.version = '3.6.9'
s.summary = 'An Objective-C Port of the ZXing barcode framework.'
s.homepage = 'https://github.com/zxingify/zxingify-objc'
s.author = 'zxingify'
Expand All @@ -19,6 +19,7 @@ Pod::Spec.new do |s|

s.subspec 'All' do |ss|
ss.source_files = 'ZXingObjC/**/*.{h,m}'
ss.exclude_files = 'ZXingObjC/include/**/*.h'
end

s.subspec 'Core' do |ss|
Expand Down

0 comments on commit 510db5f

Please sign in to comment.