diff --git a/CHANGELOG b/CHANGELOG index deb83316..86d1b567 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,16 @@ +Version 1.1.0 (2021-07-09) +-------------------------- +Run scalafmtCheckAll in github action (#163) +Migrate from travis to github actions (#162) +Add http4s module with a RegistryLookup (#161) +Bump kind-projector to 0.13.0 (#160) +Bump sbt to 1.5.4 (#159) +Bump scala compiler versions to 2.13.6 and 2.12.14 (#158) +Bump scala-collection-compat to 2.4.4 (#157) +Bump circe to 0.14.0 (#156) +Bump cats to 2.6.1 (#155) +Bump jackson to 2.10.5.1 (#154) + Version 1.0.2 (2020-08-27) -------------------------- Replace Map with SortedMap in ResolutionError (#147) diff --git a/LICENSE-2.0.txt b/LICENSE-2.0.txt index 48b64d46..a6456f45 100644 --- a/LICENSE-2.0.txt +++ b/LICENSE-2.0.txt @@ -187,7 +187,7 @@ same "printed page" as the copyright notice for easier identification within third-party archives. - Copyright 2014-2020 Snowplow Analytics Ltd. + Copyright 2014-2021 Snowplow Analytics Ltd. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. diff --git a/README.md b/README.md index f29ca456..7bb4af02 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Scala client for Iglu -[![Build Status][travis-image]][travis] +[![Build Status][ci-image]][ci] [![Release][release-image]][releases] [![License][license-image]][license] [![Coverage Status][coveralls-image]][coveralls] @@ -98,13 +98,13 @@ or there some kind of resolution problems, or simply nothing (`Unit`) in case of ## Find out more -| **[Technical Docs][techdocs]** | **[Setup Guide][setup]** | **[Roadmap][roadmap]** | **[Contributing][contributing]** | -|-------------------------------------|-------------------------------|-----------------------------------|---------------------------------------------| +| **[Technical Docs][techdocs]** | **[Setup Guide][setup]** | **[Roadmap][roadmap]** | **[Contributing][contributing]** | +|:---------------------------------:|:---------------------------:|:-------------------------------:|:-----------------------------------------:| | [![i1][techdocs-image]][techdocs] | [![i2][setup-image]][setup] | [![i3][roadmap-image]][roadmap] | [![i4][contributing-image]][contributing] | ## Copyright and license -Iglu Scala Client is copyright 2014-2020 Snowplow Analytics Ltd. +Iglu Scala Client is copyright 2014-2021 Snowplow Analytics Ltd. Licensed under the **[Apache License, Version 2.0][license]** (the "License"); you may not use this software except in compliance with the License. @@ -129,13 +129,13 @@ limitations under the License. [roadmap-image]: https://d3i6fms1cm1j0i.cloudfront.net/github/images/roadmap.png [contributing-image]: https://d3i6fms1cm1j0i.cloudfront.net/github/images/contributing.png -[techdocs]: https://github.com/snowplow/iglu/wiki/Scala-client -[setup]: https://github.com/snowplow/iglu/wiki/Scala-client-setup -[roadmap]: https://github.com/snowplow/iglu/wiki/Product-roadmap -[contributing]: https://github.com/snowplow/iglu/wiki/Contributing +[techdocs]: https://docs.snowplowanalytics.com/docs/pipeline-components-and-applications/iglu/iglu-clients/ +[setup]: https://docs.snowplowanalytics.com/docs/pipeline-components-and-applications/iglu/iglu-clients/scala-client-setup/ +[roadmap]: https://github.com/snowplow/snowplow/projects/7 +[contributing]: https://docs.snowplowanalytics.com/docs/contributing/ -[travis]: https://travis-ci.org/snowplow/iglu-scala-client -[travis-image]: https://travis-ci.org/snowplow/iglu-scala-client.png?branch=master +[ci]: https://github.com/snowplow/iglu-scala-client/actions?query=workflow%3ACI +[ci-image]: https://github.com/snowplow/iglu-scala-client/workflows/CI/badge.svg [releases]: https://github.com/snowplow/iglu-scala-client/releases [release-image]: https://maven-badges.herokuapp.com/maven-central/com.snowplowanalytics/iglu-scala-client_2.12/badge.svg diff --git a/build.sbt b/build.sbt index 86d16dcf..b752c503 100644 --- a/build.sbt +++ b/build.sbt @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/Client.scala b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/Client.scala index acafe172..bad21190 100644 --- a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/Client.scala +++ b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/Client.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/ClientError.scala b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/ClientError.scala index be4ffef3..304461f3 100644 --- a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/ClientError.scala +++ b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/ClientError.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/package.scala b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/package.scala index afec962f..f7de1ec6 100644 --- a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/package.scala +++ b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/package.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/LookupHistory.scala b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/LookupHistory.scala index c892a44e..284c735f 100644 --- a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/LookupHistory.scala +++ b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/LookupHistory.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/Resolver.scala b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/Resolver.scala index aed17e9a..f672ef5a 100644 --- a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/Resolver.scala +++ b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/Resolver.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/ResolverCache.scala b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/ResolverCache.scala index 3343e792..a14f778e 100644 --- a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/ResolverCache.scala +++ b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/ResolverCache.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2018-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/package.scala b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/package.scala index 09d58c7c..66726cc8 100644 --- a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/package.scala +++ b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/package.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/registries/Registry.scala b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/registries/Registry.scala index 015a8324..aa513348 100644 --- a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/registries/Registry.scala +++ b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/registries/Registry.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/registries/RegistryError.scala b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/registries/RegistryError.scala index f4edc7b8..d4bff77e 100644 --- a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/registries/RegistryError.scala +++ b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/registries/RegistryError.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2018-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/registries/RegistryLookup.scala b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/registries/RegistryLookup.scala index cc110af5..bd0eaacf 100644 --- a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/registries/RegistryLookup.scala +++ b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/registries/RegistryLookup.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/registries/Utils.scala b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/registries/Utils.scala index a52076bd..2f79bde3 100644 --- a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/registries/Utils.scala +++ b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/registries/Utils.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/registries/package.scala b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/registries/package.scala index ed694c23..41206021 100644 --- a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/registries/package.scala +++ b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/resolver/registries/package.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/validator/CirceValidator.scala b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/validator/CirceValidator.scala index 9a496aee..9b232822 100644 --- a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/validator/CirceValidator.scala +++ b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/validator/CirceValidator.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/validator/Validator.scala b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/validator/Validator.scala index 6ebaa8e0..0ab3c4ab 100644 --- a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/validator/Validator.scala +++ b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/validator/Validator.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2012-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/validator/ValidatorError.scala b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/validator/ValidatorError.scala index da20181c..6c69a9a1 100644 --- a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/validator/ValidatorError.scala +++ b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/validator/ValidatorError.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/validator/ValidatorReport.scala b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/validator/ValidatorReport.scala index 2be0d958..5ba0a5a6 100644 --- a/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/validator/ValidatorReport.scala +++ b/modules/core/src/main/scala/com.snowplowanalytics.iglu/client/validator/ValidatorReport.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/main/scala/io/circe/jackson/snowplow/package.scala b/modules/core/src/main/scala/io/circe/jackson/snowplow/package.scala index 2d553331..d7f24457 100644 --- a/modules/core/src/main/scala/io/circe/jackson/snowplow/package.scala +++ b/modules/core/src/main/scala/io/circe/jackson/snowplow/package.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/ClientErrorSpec.scala b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/ClientErrorSpec.scala index 0ae57a70..9d639f96 100644 --- a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/ClientErrorSpec.scala +++ b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/ClientErrorSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/SpecHelpers.scala b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/SpecHelpers.scala index 74eda16e..143260e7 100644 --- a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/SpecHelpers.scala +++ b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/SpecHelpers.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/ResolverCacheSpec.scala b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/ResolverCacheSpec.scala index 3a4083e9..44f38ada 100644 --- a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/ResolverCacheSpec.scala +++ b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/ResolverCacheSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2018-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/ResolverSpec.scala b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/ResolverSpec.scala index 7f440883..e4513cdc 100644 --- a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/ResolverSpec.scala +++ b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/ResolverSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/ResolverSpecHelpers.scala b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/ResolverSpecHelpers.scala index 7b812e36..7cdc4e27 100644 --- a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/ResolverSpecHelpers.scala +++ b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/ResolverSpecHelpers.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2018-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2018-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/registries/EmbeddedSpec.scala b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/registries/EmbeddedSpec.scala index a42c520d..2bbc299e 100644 --- a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/registries/EmbeddedSpec.scala +++ b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/registries/EmbeddedSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/registries/HttpSpec.scala b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/registries/HttpSpec.scala index 23e6e83f..211e1f30 100644 --- a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/registries/HttpSpec.scala +++ b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/registries/HttpSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/registries/RegistryErrorSpec.scala b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/registries/RegistryErrorSpec.scala index 8cc3d212..5fa011d8 100644 --- a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/registries/RegistryErrorSpec.scala +++ b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/resolver/registries/RegistryErrorSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/validator/RawValidationSpec.scala b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/validator/RawValidationSpec.scala index 093a94fc..db080860 100644 --- a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/validator/RawValidationSpec.scala +++ b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/validator/RawValidationSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/validator/SchemaValidationSpec.scala b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/validator/SchemaValidationSpec.scala index fbbf1c03..eea8aea7 100644 --- a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/validator/SchemaValidationSpec.scala +++ b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/validator/SchemaValidationSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2012-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2012-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/validator/SelfDescValidationSpec.scala b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/validator/SelfDescValidationSpec.scala index 31d5ba7b..83173094 100644 --- a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/validator/SelfDescValidationSpec.scala +++ b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/validator/SelfDescValidationSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/validator/ValidationErrorSpec.scala b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/validator/ValidationErrorSpec.scala index 815a0bde..83f27cca 100644 --- a/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/validator/ValidationErrorSpec.scala +++ b/modules/core/src/test/scala/com.snowplowanalytics.iglu.client/validator/ValidationErrorSpec.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/project/BuildSettings.scala b/project/BuildSettings.scala index 0aa7033e..9c098879 100644 --- a/project/BuildSettings.scala +++ b/project/BuildSettings.scala @@ -1,5 +1,5 @@ /* - * Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. + * Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0. diff --git a/project/Dependencies.scala b/project/Dependencies.scala index 161a8682..fd4c9772 100644 --- a/project/Dependencies.scala +++ b/project/Dependencies.scala @@ -1,4 +1,4 @@ -/* Copyright (c) 2014-2020 Snowplow Analytics Ltd. All rights reserved. +/* Copyright (c) 2014-2021 Snowplow Analytics Ltd. All rights reserved. * * This program is licensed to you under the Apache License Version 2.0, * and you may not use this file except in compliance with the Apache License Version 2.0.