Skip to content

Commit

Permalink
Merge pull request #226 from tgodzik/update-org
Browse files Browse the repository at this point in the history
chore: Update org to scalameta in order to fix releases
  • Loading branch information
tgodzik authored Jul 15, 2024
2 parents 2dc7285 + 539bf36 commit 98e30c4
Show file tree
Hide file tree
Showing 5 changed files with 12 additions and 12 deletions.
12 changes: 6 additions & 6 deletions bin/test-release.sh
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
set -eux
version=$1
coursier fetch \
com.geirsson:metaconfig-sconfig_2.12:$version \
com.geirsson:metaconfig-sconfig_2.13:$version \
com.geirsson:metaconfig-sconfig_2.12:$version \
com.geirsson:metaconfig-typesafe-config_2.12:$version \
com.geirsson:metaconfig-typesafe-config_2.13:$version \
com.geirsson:metaconfig-typesafe-config_2.12:$version \
org.scalameta:metaconfig-sconfig_2.12:$version \
org.scalameta:metaconfig-sconfig_2.13:$version \
org.scalameta:metaconfig-sconfig_2.12:$version \
org.scalameta:metaconfig-typesafe-config_2.12:$version \
org.scalameta:metaconfig-typesafe-config_2.13:$version \
org.scalameta:metaconfig-typesafe-config_2.12:$version \
-r sonatype:public
2 changes: 1 addition & 1 deletion build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ val ScalaVersions = List(scala213, scala212, scala3)
inThisBuild(
List(
useSuperShell := false,
organization := "com.geirsson",
organization := "org.scalameta",
version ~= { old => old.replace('+', '-') },
licenses := Seq(
"Apache-2.0" -> url("http://www.apache.org/licenses/LICENSE-2.0")
Expand Down
2 changes: 1 addition & 1 deletion docs/getting-started.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ with the following goals:
## Quick start

```scala
libraryDependencies += "com.geirsson" %% "metaconfig-typesafe-config" % "@VERSION@"
libraryDependencies += "org.scalameta" %% "metaconfig-typesafe-config" % "@VERSION@"
```

Next, write a case class for your user configuration.
Expand Down
6 changes: 3 additions & 3 deletions docs/reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,10 +27,10 @@ There are alternatives to metaconfig that you might want to give a try first
## Getting started

```scala
libraryDependencies += "com.geirsson" %% "metaconfig-core" % "@VERSION@"
libraryDependencies += "org.scalameta" %% "metaconfig-core" % "@VERSION@"

// Use https://github.com/lightbend/config to parse HOCON
libraryDependencies += "com.geirsson" %% "metaconfig-typesafe-config" % "@VERSION@"
libraryDependencies += "org.scalameta" %% "metaconfig-typesafe-config" % "@VERSION@"
```

Use this import to access the metaconfig API
Expand Down Expand Up @@ -541,7 +541,7 @@ To generate documentation for you configuration, add a dependency to the
following module

```scala
libraryDependencies += "com.geirsson" %% "metaconfig-docs" % "@VERSION@"
libraryDependencies += "org.scalameta" %% "metaconfig-docs" % "@VERSION@"
```

First define your configuration
Expand Down
2 changes: 1 addition & 1 deletion readme.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Metaconfig

[![Maven](https://img.shields.io/maven-central/v/com.geirsson/metaconfig-core_2.12.svg?label=maven)](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22metaconfig-core_2.12%22)
[![Maven](https://img.shields.io/maven-central/v/org.scalameta/metaconfig-core_2.12.svg?label=maven)](http://search.maven.org/#search%7Cga%7C1%7Ca%3A%22metaconfig-core_2.12%22)
![](https://github.com/scalameta/metaconfig/workflows/CI/badge.svg)

Configuration library used by
Expand Down

0 comments on commit 98e30c4

Please sign in to comment.