Skip to content

Commit

Permalink
Merge pull request #139 from nathantannar4/prepare_release_5_0_0
Browse files Browse the repository at this point in the history
[5.0.0] Prepare release
  • Loading branch information
Kaspik authored Aug 5, 2020
2 parents ef0e580 + 108e14d commit 710aa5e
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 24 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

- 5.0.0
- Drop support for iOS 9 and iOS 10
- Remove `RxSwift`/`RxCocoa` from SPM
- Fix image paste logic
- Fixed Getting started preview and hashtag typo
- Update documentation for setStackViewItems
- 4.3.3
- Add support for Swift Package Manager (SPM)
- Make `reuseIdentifier` public accessible
Expand Down
2 changes: 1 addition & 1 deletion InputBarAccessoryView.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ Pod::Spec.new do |s|
s.swift_versions = '5.0'

# 2 - Version
s.version = "4.3.3"
s.version = "5.0.0"

# 3 - License
s.license = { :type => "MIT", :file => "LICENSE" }
Expand Down
4 changes: 2 additions & 2 deletions InputBarAccessoryView.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -548,7 +548,7 @@
INFOPLIST_FILE = "$(SRCROOT)/Sources/Supporting Files/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 4.3.3;
MARKETING_VERSION = 5.0.0;
PRODUCT_BUNDLE_IDENTIFIER = me.nathantannar.InputBarAccessoryView;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand All @@ -571,7 +571,7 @@
INFOPLIST_FILE = "$(SRCROOT)/Sources/Supporting Files/Info.plist";
INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks";
LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks";
MARKETING_VERSION = 4.3.3;
MARKETING_VERSION = 5.0.0;
PRODUCT_BUNDLE_IDENTIFIER = me.nathantannar.InputBarAccessoryView;
PRODUCT_NAME = "$(TARGET_NAME)";
SKIP_INSTALL = YES;
Expand Down
33 changes: 13 additions & 20 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ dependencies: [
.package(url: "https://github.com/nathantannar4/InputBarAccessoryView.git", .upToNextMajor(from: "4.5.0"))
]
```
You can also add it via XCode SPM editor with URL `https://github.com/nathantannar4/InputBarAccessoryView.git`
You can also add it via XCode SPM editor with URL:
```
https://github.com/nathantannar4/InputBarAccessoryView.git
```
To make `RxSwift`/`RxCocoa` extensions work you need to explicitly import `Rx` dependencies.

### Installation via CocoaPods

Expand Down Expand Up @@ -90,8 +94,12 @@ Add your app to the list of apps using this library and make a pull request.
iMessage style [TypingIndicator](https://github.com/nathantannar4/TypingIndicator) for chat apps

## Latest Releases
- master
- Drop iOS 9 and iOS 10
- 5.0.0
- Drop support for iOS 9 and iOS 10 #117
- Remove `RxSwift`/`RxCocoa` from SPM #128
- Fix image paste logic #126
- Fixed Getting started preview and hashtag typo #93
- Update documentation for setStackViewItems #82
- 4.3.3
- Added support for Swift Package Manager (SPM)
- Made `reuseIdentifier` public accessible
Expand All @@ -102,23 +110,8 @@ iMessage style [TypingIndicator](https://github.com/nathantannar4/TypingIndicato
- Add `RxSwift`/`RxCocoa` support through extensions and delegate proxies, requires Cocoapods installation of `InputBarAccessoryView/RxExtensions`
- 4.3.0
- Swift 5 support
- 4.2.2
- Fixed image paste orientation issue in `InputTextView`
- 4.2.1
- Fixed autocompletes of completions that contain spaces
- Depricated `isCaseSensitive` in favor of a function asignment to pre-process autocompletions
- 4.2.0
- Added new API for overriding the main middle view, normally the `InputTextView` so it can be replaced with views such as a "Join" button", `setMiddleContentView(_ view: UIView?, animated: Bool)`
- 4.1.2
- Add `InputBarViewController` which contains an `InputBarAccessoryView` as the `inputAccessoryView` by default with a convenient `isInputBarHidden: Bool` property to show/hide it
- 4.1.1
- Add `frameInsets: HorizontalEdgePadding` property to `InputBarAccessoryView` to inset the view to be compatible with `UISplitViewController` or other custom containers where the view should not be the full width
- 4.1.0
- Fix issue where setting long strings in `viewDidLoad` broke inital layout, Issue #41
- Add `deleteCompletionByParts: Bool` flag to `AutocompleteManager` to allow for partial deletions of autocompletes rather than just the entire substring.
- Add `InputBarSendButton` to use as the `sendButton` in `InputBarAccessoryView`. This subclass of `InputBarButtonItem` has a `UIActivityIndicatorView` to show a spinner when making HTTP requests

### [CHANGELOG](./CHANGELOG.md)

See [CHANGELOG](./CHANGELOG.md) for more details and older releases.

**Find a bug? Open an issue!**

Expand Down

0 comments on commit 710aa5e

Please sign in to comment.