Skip to content

Commit 92bb7c0

Browse files
authored
Merge pull request #14 from simplesteph/v1.1.0
v1.1.0
2 parents 8944d78 + 38d2459 commit 92bb7c0

File tree

3 files changed

+17
-6
lines changed

3 files changed

+17
-6
lines changed

.travis.yml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,13 @@ deploy:
1717
script: bash docker_push.sh
1818
skip_cleanup: true
1919
on:
20-
all_branches: true
20+
tags: true
21+
condition: -z "$TRAVIS_PULL_REQUEST_BRANCH"
22+
- provider: script
23+
script: bash docker_push.sh
24+
skip_cleanup: true
25+
on:
26+
branch: master
2127
condition: -z "$TRAVIS_PULL_REQUEST_BRANCH"
2228
# tags: true / false => has precendence over the branch condition
2329
# condition: "foo == bar && baz==bat"

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,9 @@ All notable changes to this project will be documented in this file.
44
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
55
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
66

7-
## [Unreleased]
7+
## [Unreleased - 0.2]
8+
- Kafka 1.1.0
9+
- Updated Embedded Kafka to v1.1.0-kafka1.1.0 (test dependency)
810

911

1012
## [0.1] - 08/03/2017

build.sbt

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ name := "kafka-security-manager"
22

33
organization := "com.github.simplesteph.ksm"
44

5-
version := "0.1-SNAPSHOT"
5+
version := "0.2-SNAPSHOT"
66

77
scalaVersion := "2.12.4"
88

@@ -11,12 +11,15 @@ lazy val root = (project in file("."))
1111
.enablePlugins(DockerPlugin)
1212

1313

14-
resolvers += "Artima Maven Repository" at "http://repo.artima.com/releases"
14+
resolvers ++= Seq(
15+
"Artima Maven Repository" at "http://repo.artima.com/releases",
16+
"confluent" at "https://packages.confluent.io/maven/",
17+
)
1518

1619
libraryDependencies ++= Seq(
1720
// kafka
18-
"org.apache.kafka" %% "kafka" % "1.0.1",
19-
"net.manub" %% "scalatest-embedded-kafka" % "1.0.0" % "test",
21+
"org.apache.kafka" %% "kafka" % "1.1.0",
22+
"net.manub" %% "scalatest-embedded-kafka" % "1.1.0-kafka1.1" % "test",
2023

2124
// logging
2225
"org.slf4j" % "slf4j-api" % "1.7.25",

0 commit comments

Comments
 (0)