Skip to content

Commit

Permalink
Releasing version 7.0.0-beta.1.
Browse files Browse the repository at this point in the history
  • Loading branch information
DenTelezhkin committed Aug 20, 2019
1 parent 9c5978d commit aeb4328
Show file tree
Hide file tree
Showing 27 changed files with 739 additions and 923 deletions.
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.

# Next

## [7.0.0-beta.1](https://github.com/DenTelezhkin/DTTableViewManager/releases/tag/7.0.0-beta.1)

**This is a major release with some breaking changes, please read [DTTableViewManager 7.0 Migration Guide](https://github.com/DenTelezhkin/DTTableViewManager/blob/master/Guides/7.0%20Migration%20Guide.md)**

### Added
Expand Down
2 changes: 1 addition & 1 deletion DTTableViewManager.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'DTTableViewManager'
s.version = "6.6.0"
s.version = "7.0.0-beta.1"
s.license = 'MIT'
s.summary = 'Protocol-oriented UITableView management, powered by generics and associated types.'
s.homepage = 'https://github.com/DenTelezhkin/DTTableViewManager'
Expand Down
6 changes: 3 additions & 3 deletions Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"package": "DTModelStorage",
"repositoryURL": "https://github.com/DenTelezhkin/DTModelStorage",
"state": {
"branch": "next",
"revision": "87ff88491abc8d77cb0a610fa424d25f5bcfd560",
"version": null
"branch": null,
"revision": "bcdf8bc860699f986827385b248a9822f11c0453",
"version": "8.0.0-beta.1"
}
}
]
Expand Down
2 changes: 1 addition & 1 deletion Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ let package = Package(
.library(name: "DTTableViewManager", targets: ["DTTableViewManager"])
],
dependencies: [
.package(url: "https://github.com/DenTelezhkin/DTModelStorage", .branch("next"))
.package(url: "https://github.com/DenTelezhkin/DTModelStorage", Package.Dependency.Requirement.exact("8.0.0-beta.1"))
],
targets: [
.target(name: "DTTableViewManager", dependencies: ["DTModelStorage"]),
Expand Down
2 changes: 1 addition & 1 deletion Supporting files/Framework.plist
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
<key>CFBundlePackageType</key>
<string>FMWK</string>
<key>CFBundleShortVersionString</key>
<string>6.6.0</string>
<string>7.0.0-beta.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleVersion</key>
Expand Down
16 changes: 8 additions & 8 deletions docs/badge.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
10 changes: 7 additions & 3 deletions docs/css/jazzy.css
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ a {
a:hover, a:focus {
outline: 0;
text-decoration: underline; }
a.discouraged {
text-decoration: line-through; }
a.discouraged:hover, a.discouraged:focus {
text-decoration: underline line-through; }

table {
background: #fff;
Expand Down Expand Up @@ -225,7 +229,7 @@ pre code {
.item a[name]:before {
content: "";
display: block; }
.item .token {
.item .token, .item .direct-link {
padding-left: 3px;
margin-left: 0px;
font-size: 1rem; }
Expand Down Expand Up @@ -287,9 +291,9 @@ pre code {
.language .aside-title {
color: #4183c4; }

.aside-warning {
.aside-warning, .aside-deprecated, .aside-unavailable {
border-left: 5px solid #ff6666; }
.aside-warning .aside-title {
.aside-warning .aside-title, .aside-deprecated .aside-title, .aside-unavailable .aside-title {
color: #ff0000; }

.graybox {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,10 @@ a {
a:hover, a:focus {
outline: 0;
text-decoration: underline; }
a.discouraged {
text-decoration: line-through; }
a.discouraged:hover, a.discouraged:focus {
text-decoration: underline line-through; }

table {
background: #fff;
Expand Down Expand Up @@ -225,7 +229,7 @@ pre code {
.item a[name]:before {
content: "";
display: block; }
.item .token {
.item .token, .item .direct-link {
padding-left: 3px;
margin-left: 0px;
font-size: 1rem; }
Expand Down Expand Up @@ -287,9 +291,9 @@ pre code {
.language .aside-title {
color: #4183c4; }

.aside-warning {
.aside-warning, .aside-deprecated, .aside-unavailable {
border-left: 5px solid #ff6666; }
.aside-warning .aside-title {
.aside-warning .aside-title, .aside-deprecated .aside-title, .aside-unavailable .aside-title {
color: #ff0000; }

.graybox {
Expand Down
Loading

0 comments on commit aeb4328

Please sign in to comment.