Skip to content

Commit

Permalink
dave - version bump
Browse files Browse the repository at this point in the history
  • Loading branch information
daviddenton committed Mar 16, 2016
1 parent 03c8757 commit 7c231ae
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 7 deletions.
7 changes: 4 additions & 3 deletions CHANGELOG.md
Expand Up @@ -5,10 +5,11 @@ The main API is stable now, but expect some amount of breaking changes around ma
## v12.8.0 (planned)
- Option to dynamically reload templates.

## v12.7.0 (in dev)
- Added generification of ModuleSpec in the ```Request``` type as well as the ```Response``` type. This means that we can plug in other Finagle frameworks which vary in their Request type, such as Finagle-OAuth. Likelihood of breaks is small, so
## v12.7.0
- Added generification of ModuleSpec in the ```Request``` type as well as the ```Response``` type. This means that we can plug in other Finagle frameworks which vary in their Request type, such as Finagle-OAuth2. Likelihood of breaks is small, so
just a minor version bump. In all cases, just replace ```ModuleSpec[X]``` and ```ServerRoute[X]``` with ```ModuleSpec[Request, X]``` and ```ServerRoute[Request, X]``` .
- Upgrade finagle dependency to v6.34.0
- Upgrade Finagle dependency to v6.34.0
- Added examples for templating and OAuth2 integration

## v12.6.0
- Bolstered infra utilities to be friendlier for testing applications outside of a container
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -40,7 +40,7 @@ Add the following lines to ```build.sbt```:
```scala
resolvers += "JCenter" at "https://jcenter.bintray.com"
libraryDependencies += "com.twitter" %% "finagle-http" % "6.34.0"
libraryDependencies += "io.github.daviddenton" %% "fintrospect" % "12.6.0"
libraryDependencies += "io.github.daviddenton" %% "fintrospect" % "12.7.0"
```

## See the code
Expand Down
4 changes: 2 additions & 2 deletions harp.json
Expand Up @@ -5,8 +5,8 @@
"new": "6.34.0"
},
"fintrospect": {
"old": "12.5.0",
"new": "12.6.0"
"old": "12.6.0",
"new": "12.7.0"
}
}
}
2 changes: 1 addition & 1 deletion src/main/site/installation-header.md
Expand Up @@ -11,5 +11,5 @@ Add the following lines to ```build.sbt```:
```scala
resolvers += "JCenter" at "https://jcenter.bintray.com"
libraryDependencies += "com.twitter" %% "finagle-http" % "6.34.0"
libraryDependencies += "io.github.daviddenton" %% "fintrospect" % "12.6.0"
libraryDependencies += "io.github.daviddenton" %% "fintrospect" % "12.7.0"
```

0 comments on commit 7c231ae

Please sign in to comment.