Skip to content

Commit

Permalink
Release 0.9.0 (#35)
Browse files Browse the repository at this point in the history
Also set default development version to Swift 5 and fix one warning.
  • Loading branch information
jpsim authored Apr 5, 2019
1 parent c96adf2 commit c6df6cf
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .swift-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
3.1
5.0
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
## 0.9.0

##### Breaking

* None

##### Enhancements

* Pre-compute column width to increase rendering performance.

##### Bug Fixes

* Fix column width when using terminal escape sequences such as coloring.

## 0.8.2

##### Breaking
Expand Down
2 changes: 1 addition & 1 deletion Source/SwiftyTextTable/TextTable.swift
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,7 @@ public extension Array where Element: TextTableRepresentable {
Returns a rendered text table containing the data in the array.
- returns: A `String` containing the rendered text table.
*/
public func renderTextTable() -> String {
func renderTextTable() -> String {
let table = TextTable(objects: self)
return table.render()
}
Expand Down
2 changes: 1 addition & 1 deletion SwiftyTextTable.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ Pod::Spec.new do |s|
#

s.name = "SwiftyTextTable"
s.version = "0.8.2"
s.version = "0.9.0"
s.summary = "A lightweight Swift library for generating text tables."

# This description is used to generate tags and improve search results.
Expand Down

0 comments on commit c6df6cf

Please sign in to comment.