Skip to content

Commit

Permalink
Merge pull request google#104 from opinali/master
Browse files Browse the repository at this point in the history
v1.3.0
  • Loading branch information
opinali authored Feb 3, 2017
2 parents 72103eb + 1ff62aa commit 7e500fd
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
RELEASE NOTES
----------------------------------------------------------------------

## Version 1.3.0, 03-02-2017
* Updated Protocol Buffers to v3.2.0! You will need to install this
exact version of protobuf, have it in the PATH, rebuild everything.

## Version 1.2.2, 09-01-2017
* OpenRTB proto update (docs only).

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,8 @@ public class OpenRtbUtilsTest {

@Test
public void testCatUtils() {
assertThat(OpenRtbUtils.categoryFromName("IAB10-1")).isSameAs(ContentCategory.IAB10_1);
assertThat(OpenRtbUtils.categoryFromName("IAB10_1")).isSameAs(ContentCategory.IAB10_1);
assertThat(OpenRtbUtils.categoryFromName("IAB10-1")).isSameAs(ContentCategory.IAB10_1);
assertThat(OpenRtbUtils.categoryToJsonName("IAB10-1")).isEqualTo("IAB10-1");
assertThat(OpenRtbUtils.categoryToJsonName("IAB10_1")).isEqualTo("IAB10-1");
assertThat(OpenRtbUtils.categoryToJsonName(ContentCategory.IAB10_1)).isEqualTo("IAB10-1");
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@

<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.0</version>
<version>3.6.1</version>
<configuration>
<source>1.8</source>
<target>1.8</target>
Expand Down

0 comments on commit 7e500fd

Please sign in to comment.