Skip to content

Commit

Permalink
Merge pull request #15 from typelevel/typelevel-migration
Browse files Browse the repository at this point in the history
Typelevel migration
  • Loading branch information
bplommer authored Apr 1, 2023
2 parents bb555d6 + ac312b7 commit 88a8dbf
Show file tree
Hide file tree
Showing 7 changed files with 15 additions and 14 deletions.
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
catapult
Copyright 2022 Ben Plommer
Copyright 2022 Typelevel
Licensed under Apache License 2.0 (see LICENSE)
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@
A thin wrapper for the [Launch Darkly Java server SDK](https://github.com/launchdarkly/java-server-sdk) using cats-effect.

```sbt
"io.github.bplommer" %% "catapult" % "latestVersion"
"org.typelevel" %% "catapult" % "latestVersion"
```
7 changes: 4 additions & 3 deletions build.sbt
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
// https://typelevel.org/sbt-typelevel/faq.html#what-is-a-base-version-anyway
ThisBuild / tlBaseVersion := "0.4" // your current series x.y

ThisBuild / organization := "io.github.bplommer"
ThisBuild / organizationName := "Ben Plommer"
ThisBuild / organization := "org.typelevel"
ThisBuild / organizationName := "Typelevel"
ThisBuild / startYear := Some(2022)
ThisBuild / licenses := Seq(License.Apache2)
ThisBuild / developers := List(
// your GitHub handle and name
tlGitHubDev("bplommer", "Ben Plommer")
tlGitHubDev("bplommer", "Ben Plommer"),
tlGitHubDev("averymcnab", "Avery McNab"),
)

// publish to s01.oss.sonatype.org (set to true to publish to oss.sonatype.org instead)
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 Ben Plommer
* Copyright 2022 Typelevel
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package catapult
package org.typelevel.catapult

import com.launchdarkly.sdk.{LDContext, LDUser}

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 Ben Plommer
* Copyright 2022 Typelevel
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package catapult
package org.typelevel.catapult

import cats.effect.std.{Dispatcher, Queue}
import cats.effect.{Async, Resource}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 Ben Plommer
* Copyright 2022 Typelevel
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,7 +14,7 @@
* limitations under the License.
*/

package catapult
package org.typelevel.catapult

import cats.effect.{Async, Resource}
import cats.syntax.all._
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright 2022 Ben Plommer
* Copyright 2022 Typelevel
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand All @@ -14,14 +14,14 @@
* limitations under the License.
*/

package catapult
package org.typelevel.catapult

import cats.data.{Chain, NonEmptyChain}
import cats.effect._
import cats.effect.std.Supervisor
import com.launchdarkly.sdk.server.interfaces.FlagValueChangeEvent
import com.launchdarkly.sdk.{LDUser, LDValue}
import catapult.testkit._
import org.typelevel.catapult.testkit._
import weaver.SimpleIOSuite

import scala.concurrent.duration.DurationInt
Expand Down

0 comments on commit 88a8dbf

Please sign in to comment.