Skip to content

Commit

Permalink
Merge pull request #7 from bplommer/rename-to-catapult
Browse files Browse the repository at this point in the history
Rename from launch-catsly to catapult
  • Loading branch information
bplommer authored Mar 20, 2023
2 parents eebd6eb + 7ed8422 commit 2538aac
Show file tree
Hide file tree
Showing 8 changed files with 13 additions and 13 deletions.
2 changes: 1 addition & 1 deletion NOTICE
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
launch-catsly
catapult
Copyright 2022 Ben Plommer
Licensed under Apache License 2.0 (see LICENSE)
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# launch-catsly
# Catapult

A thin wrapper for the [Launch Darkly Java server SDK](https://github.com/launchdarkly/java-server-sdk) using cats-effect.

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

ThisBuild / organization := "io.github.bplommer"
ThisBuild / organizationName := "Ben Plommer"
Expand All @@ -26,7 +26,7 @@ lazy val testkit = crossProject(JVMPlatform)
.crossType(CrossType.Pure)
.in(file("testkit"))
.settings(
name := "launch-catsly-testkit",
name := "catapult-testkit",
libraryDependencies ++= Seq(
"com.disneystreaming" %% "weaver-cats" % "0.7.12" % Test
),
Expand All @@ -39,7 +39,7 @@ lazy val core = crossProject(JVMPlatform)
.crossType(CrossType.Pure)
.in(file("core"))
.settings(
name := "launch-catsly",
name := "catapult",
libraryDependencies ++= Seq(
"org.typelevel" %%% "cats-core" % "2.8.0",
"org.typelevel" %%% "cats-effect" % "3.3.14",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package io.github.bplommer.launchcatsly
package catapult

import cats.effect.std.{Dispatcher, Queue}
import cats.effect.{Async, Resource}
Expand Down
4 changes: 2 additions & 2 deletions docs/index.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## launch-catsly
## catapult

### Usage

Expand All @@ -8,6 +8,6 @@ To use the latest version, include the following in your `build.sbt`:

```scala
libraryDependencies ++= Seq(
"io.github.bplommer" %% "launch-catsly" % "@VERSION@"
"io.github.bplommer" %% "catapult" % "@VERSION@"
)
```
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
{
devShell = pkgs.devshell.mkShell {
imports = [ typelevel-nix.typelevelShell ];
name = "launch-catsly-shell";
name = "catapult-shell";
typelevelShell = {
jdk.package = pkgs.jdk8;
nodejs.enable = true;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
* limitations under the License.
*/

package io.github.bplommer.launchcatsly
package catapult

import cats.effect.{Async, Resource}
import cats.syntax.all._
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,14 @@
* limitations under the License.
*/

package com.github.bplommer.launchcatsly
package 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 io.github.bplommer.launchcatsly.testkit._
import catapult.testkit._
import weaver.SimpleIOSuite

import scala.concurrent.duration.DurationInt
Expand Down

0 comments on commit 2538aac

Please sign in to comment.