Skip to content

Commit

Permalink
Revert "Change .package to minor: 1"
Browse files Browse the repository at this point in the history
This reverts commit f07920e.

Changes were undoing previous work mistakenly
  • Loading branch information
Joe-Brady committed Nov 29, 2016
1 parent ac83326 commit b5d235b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 2 additions & 0 deletions en/resources/tutorials/parsingrequests.md
Expand Up @@ -63,6 +63,8 @@ The built in body parsing middleware can parse a variety of body types including

<span class="arrow">&#8227;</span> Import SwiftyJSON by adding it to your `Package.swift` file and by adding `import SwiftyJSON` to the top of your file.

> ![tip] Tip: Make sure you import the same version of SwiftyJSON as your Kitura depends on. You can find out which version of SwiftyJSON you are using by looking in `Packages/Kitura*/Package.swift`
<span class="arrow">&#8227;</span> Specify that the body parser should be run on all paths starting with `/name`

```swift
Expand Down
4 changes: 2 additions & 2 deletions en/starter/gettingstarted.md
Expand Up @@ -51,7 +51,7 @@ import PackageDescription
let package = Package(
name: "myFirstProject",
dependencies: [
.Package(url: "https://github.com/IBM-Swift/Kitura.git", majorVersion: 1, minor: 1)
.Package(url: "https://github.com/IBM-Swift/Kitura.git", majorVersion: 1, minor: 2)
])
```

Expand Down Expand Up @@ -109,7 +109,7 @@ import PackageDescription
let package = Package(
name: "myFirstProject",
dependencies: [
.Package(url: "https://github.com/IBM-Swift/Kitura.git", majorVersion: 1, minor: 1),
.Package(url: "https://github.com/IBM-Swift/Kitura.git", majorVersion: 1, minor: 2),
.Package(url: "https://github.com/IBM-Swift/HeliumLogger.git", majorVersion: 1, minor: 1)
])
```
Expand Down

0 comments on commit b5d235b

Please sign in to comment.