From 655823fcc69c92df577172b5800ee82006a54f30 Mon Sep 17 00:00:00 2001 From: Andrew Valencik Date: Fri, 29 Mar 2024 12:45:27 -0400 Subject: [PATCH 1/3] Update organization and organizationName --- build.sbt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.sbt b/build.sbt index ef182e4..c25c946 100644 --- a/build.sbt +++ b/build.sbt @@ -1,8 +1,8 @@ // https://typelevel.org/sbt-typelevel/faq.html#what-is-a-base-version-anyway ThisBuild / tlBaseVersion := "0.0" // your current series x.y -ThisBuild / organization := "io.pig" -ThisBuild / organizationName := "Pig.io" +ThisBuild / organization := "pink.cozydev" +ThisBuild / organizationName := "CozyDev" ThisBuild / startYear := Some(2022) ThisBuild / licenses := Seq(License.Apache2) ThisBuild / developers := List( From 8d40ef51fec6106c2013cfbc4046fb6cce6d0695 Mon Sep 17 00:00:00 2001 From: Andrew Valencik Date: Fri, 29 Mar 2024 12:46:32 -0400 Subject: [PATCH 2/3] Run `prePR`, update Copyright in all headers --- .../src/main/scala/textmogrify/LuceneStreamingBenchmark.scala | 2 +- .../main/scala/textmogrify/LuceneTokenizationBenchmark.scala | 2 +- example/src/main/scala/textmogrify/LuceneStreaming.scala | 2 +- example/src/main/scala/textmogrify/MultiLingualPipeline.scala | 2 +- example/src/main/scala/textmogrify/Pipeline.scala | 2 +- lucene/src/main/scala/textmogrify/lucene/AnalyzerBuilder.scala | 2 +- lucene/src/main/scala/textmogrify/lucene/AnalyzerPipe.scala | 2 +- lucene/src/main/scala/textmogrify/lucene/AnalyzerResource.scala | 2 +- lucene/src/main/scala/textmogrify/lucene/Tokenizer.scala | 2 +- .../test/scala/textmogrify/lucene/AnalyzerBuilderSuite.scala | 2 +- .../src/test/scala/textmogrify/lucene/AnalyzerPipeSuite.scala | 2 +- .../test/scala/textmogrify/lucene/AnalyzerResourceSuite.scala | 2 +- 12 files changed, 12 insertions(+), 12 deletions(-) diff --git a/benchmarks/src/main/scala/textmogrify/LuceneStreamingBenchmark.scala b/benchmarks/src/main/scala/textmogrify/LuceneStreamingBenchmark.scala index 2a1dd30..b369001 100644 --- a/benchmarks/src/main/scala/textmogrify/LuceneStreamingBenchmark.scala +++ b/benchmarks/src/main/scala/textmogrify/LuceneStreamingBenchmark.scala @@ -1,5 +1,5 @@ /* - * Copyright 2022 Pig.io + * Copyright 2022 CozyDev * * 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/benchmarks/src/main/scala/textmogrify/LuceneTokenizationBenchmark.scala b/benchmarks/src/main/scala/textmogrify/LuceneTokenizationBenchmark.scala index eb913ff..60b1eb8 100644 --- a/benchmarks/src/main/scala/textmogrify/LuceneTokenizationBenchmark.scala +++ b/benchmarks/src/main/scala/textmogrify/LuceneTokenizationBenchmark.scala @@ -1,5 +1,5 @@ /* - * Copyright 2022 Pig.io + * Copyright 2022 CozyDev * * 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/example/src/main/scala/textmogrify/LuceneStreaming.scala b/example/src/main/scala/textmogrify/LuceneStreaming.scala index 2acefdc..3da8e4c 100644 --- a/example/src/main/scala/textmogrify/LuceneStreaming.scala +++ b/example/src/main/scala/textmogrify/LuceneStreaming.scala @@ -1,5 +1,5 @@ /* - * Copyright 2022 Pig.io + * Copyright 2022 CozyDev * * 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/example/src/main/scala/textmogrify/MultiLingualPipeline.scala b/example/src/main/scala/textmogrify/MultiLingualPipeline.scala index 3f3d4ea..9c7608d 100644 --- a/example/src/main/scala/textmogrify/MultiLingualPipeline.scala +++ b/example/src/main/scala/textmogrify/MultiLingualPipeline.scala @@ -1,5 +1,5 @@ /* - * Copyright 2022 Pig.io + * Copyright 2022 CozyDev * * 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/example/src/main/scala/textmogrify/Pipeline.scala b/example/src/main/scala/textmogrify/Pipeline.scala index 7471177..440dd77 100644 --- a/example/src/main/scala/textmogrify/Pipeline.scala +++ b/example/src/main/scala/textmogrify/Pipeline.scala @@ -1,5 +1,5 @@ /* - * Copyright 2022 Pig.io + * Copyright 2022 CozyDev * * 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/lucene/src/main/scala/textmogrify/lucene/AnalyzerBuilder.scala b/lucene/src/main/scala/textmogrify/lucene/AnalyzerBuilder.scala index 980af8e..ee1cd76 100644 --- a/lucene/src/main/scala/textmogrify/lucene/AnalyzerBuilder.scala +++ b/lucene/src/main/scala/textmogrify/lucene/AnalyzerBuilder.scala @@ -1,5 +1,5 @@ /* - * Copyright 2022 Pig.io + * Copyright 2022 CozyDev * * 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/lucene/src/main/scala/textmogrify/lucene/AnalyzerPipe.scala b/lucene/src/main/scala/textmogrify/lucene/AnalyzerPipe.scala index 2348848..261c14d 100644 --- a/lucene/src/main/scala/textmogrify/lucene/AnalyzerPipe.scala +++ b/lucene/src/main/scala/textmogrify/lucene/AnalyzerPipe.scala @@ -1,5 +1,5 @@ /* - * Copyright 2022 Pig.io + * Copyright 2022 CozyDev * * 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/lucene/src/main/scala/textmogrify/lucene/AnalyzerResource.scala b/lucene/src/main/scala/textmogrify/lucene/AnalyzerResource.scala index 8340364..9ca831f 100644 --- a/lucene/src/main/scala/textmogrify/lucene/AnalyzerResource.scala +++ b/lucene/src/main/scala/textmogrify/lucene/AnalyzerResource.scala @@ -1,5 +1,5 @@ /* - * Copyright 2022 Pig.io + * Copyright 2022 CozyDev * * 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/lucene/src/main/scala/textmogrify/lucene/Tokenizer.scala b/lucene/src/main/scala/textmogrify/lucene/Tokenizer.scala index 0ec8bce..88cc263 100644 --- a/lucene/src/main/scala/textmogrify/lucene/Tokenizer.scala +++ b/lucene/src/main/scala/textmogrify/lucene/Tokenizer.scala @@ -1,5 +1,5 @@ /* - * Copyright 2022 Pig.io + * Copyright 2022 CozyDev * * 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/lucene/src/test/scala/textmogrify/lucene/AnalyzerBuilderSuite.scala b/lucene/src/test/scala/textmogrify/lucene/AnalyzerBuilderSuite.scala index 09d5f82..ce1bfb7 100644 --- a/lucene/src/test/scala/textmogrify/lucene/AnalyzerBuilderSuite.scala +++ b/lucene/src/test/scala/textmogrify/lucene/AnalyzerBuilderSuite.scala @@ -1,5 +1,5 @@ /* - * Copyright 2022 Pig.io + * Copyright 2022 CozyDev * * 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/lucene/src/test/scala/textmogrify/lucene/AnalyzerPipeSuite.scala b/lucene/src/test/scala/textmogrify/lucene/AnalyzerPipeSuite.scala index af1ca9b..e3c10da 100644 --- a/lucene/src/test/scala/textmogrify/lucene/AnalyzerPipeSuite.scala +++ b/lucene/src/test/scala/textmogrify/lucene/AnalyzerPipeSuite.scala @@ -1,5 +1,5 @@ /* - * Copyright 2022 Pig.io + * Copyright 2022 CozyDev * * 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/lucene/src/test/scala/textmogrify/lucene/AnalyzerResourceSuite.scala b/lucene/src/test/scala/textmogrify/lucene/AnalyzerResourceSuite.scala index 13101c7..6fa38cc 100644 --- a/lucene/src/test/scala/textmogrify/lucene/AnalyzerResourceSuite.scala +++ b/lucene/src/test/scala/textmogrify/lucene/AnalyzerResourceSuite.scala @@ -1,5 +1,5 @@ /* - * Copyright 2022 Pig.io + * Copyright 2022 CozyDev * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. From 2c977c85a0c7b511eb23ee33b48a7735ca9acd07 Mon Sep 17 00:00:00 2001 From: Andrew Valencik Date: Fri, 29 Mar 2024 12:47:56 -0400 Subject: [PATCH 3/3] Update coords in index.md --- docs/index.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/index.md b/docs/index.md index a6de815..79384e9 100644 --- a/docs/index.md +++ b/docs/index.md @@ -10,7 +10,7 @@ To use the latest version, include the following in your `build.sbt`: ```scala libraryDependencies ++= Seq( - "io.pig" %% "textmogrify" % "@VERSION@" + "pink.cozydev" %% "textmogrify" % "@VERSION@" ) ``` @@ -20,7 +20,7 @@ Currently the core functionality of textmogrify is implemented with [Lucene][luc ```scala libraryDependencies ++= Seq( - "io.pig" %% "textmogrify-lucene" % "@VERSION@" + "pink.cozydev" %% "textmogrify-lucene" % "@VERSION@" ) ```