Skip to content

Commit

Permalink
Fix README
Browse files Browse the repository at this point in the history
  • Loading branch information
guizmaii committed Oct 18, 2023
1 parent d9ce324 commit 5912f46
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 17 deletions.
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
[//]: # (So please do not edit it manually. Instead, change "docs/index.md" file or sbt setting keys)
[//]: # (e.g. "readmeDocumentation" and "readmeSupport".)

# zio-AES
# zio-aes

[![Production Ready](https://img.shields.io/badge/Project%20Stage-Production%20Ready-brightgreen.svg)](https://github.com/zio/zio/wiki/Project-Stages) ![CI Badge](https://github.com/zio/zio-AES/workflows/CI/badge.svg) [![Sonatype Snapshots](https://img.shields.io/nexus/s/https/oss.sonatype.org/com.guizmaii/zio-aes_3.svg?label=Sonatype%20Snapshot)](https://oss.sonatype.org/content/repositories/snapshots/com/guizmaii/zio-aes_3/) [![zio-AES](https://img.shields.io/github/stars/zio/zio-AES?style=social)](https://github.com/zio/zio-AES)
[![Production Ready](https://img.shields.io/badge/Project%20Stage-Production%20Ready-brightgreen.svg)](https://github.com/zio/zio/wiki/Project-Stages) ![CI Badge](https://github.com/zio/zio-AES/workflows/CI/badge.svg) [![Sonatype Releases](https://img.shields.io/nexus/r/https/oss.sonatype.org/com.guizmaii/zio-aes_2.13.svg?label=Sonatype%20Release)](https://oss.sonatype.org/content/repositories/releases/com/guizmaii/zio-aes_2.13/) [![Sonatype Snapshots](https://img.shields.io/nexus/s/https/oss.sonatype.org/com.guizmaii/zio-aes_2.13.svg?label=Sonatype%20Snapshot)](https://oss.sonatype.org/content/repositories/snapshots/com/guizmaii/zio-aes_2.13/) [![javadoc](https://javadoc.io/badge2/com.guizmaii/zio-aes-docs_2.13/javadoc.svg)](https://javadoc.io/doc/com.guizmaii/zio-aes-docs_2.13) [![zio-aes](https://img.shields.io/github/stars/zio/zio-AES?style=social)](https://github.com/zio/zio-AES)

## Introduction

Expand All @@ -17,12 +17,12 @@ ZIO implementation of https://gist.github.com/guizmaii/6b5d3666081960639c3df0a24
In order to use this library, we need to add the following line in our `build.sbt` file:

```scala
libraryDependencies += "com.guizmaii" %% "zio-AES" % "<version>"
libraryDependencies += "com.guizmaii" %% "zio-aes" % "<version>"
```

## Documentation

Learn more on the [zio-AES homepage](https://github.com/guizmaii-opensource/zio-AES)!
Learn more on the [zio-aes homepage](https://github.com/guizmaii-opensource/zio-aes)!

## Contributing

Expand All @@ -43,4 +43,4 @@ Come chat with us on [![Badge-Discord]][Link-Discord].

[License](LICENSE)

Copyright 2023-2023 Jules Ivanic and the zio-AES contributors.
Copyright 2023-2023 Jules Ivanic and the zio-aes contributors.
24 changes: 12 additions & 12 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ enablePlugins(

inThisBuild(
List(
name := "zio-AES",
name := "zio-aes",
organization := "com.guizmaii",
homepage := Some(url("https://github.com/guizmaii-opensource/zio-AES")),
homepage := Some(url("https://github.com/guizmaii-opensource/zio-aes")),
zioVersion := "2.0.18",
scala212 := "2.12.18",
scala213 := "2.13.12",
Expand Down Expand Up @@ -41,18 +41,18 @@ lazy val root =
project
.in(file("."))
.settings(
name := "zio-AES",
name := "zio-aes",
publish / skip := true,
crossScalaVersions := Nil,// https://www.scala-sbt.org/1.x/docs/Cross-Build.html#Cross+building+a+project+statefully
)
.aggregate(
`zio-AES`
`zio-aes`
)

lazy val `zio-AES` =
lazy val `zio-aes` =
project
.in(file("zio-aes"))
.settings(stdSettings(Some("zio-AES")))
.settings(stdSettings(Some("zio-aes")))
.settings(addOptionsOn("2.13")("-Xsource:3"))
.settings(addOptionsOn("2.12")("-Xsource:3"))
.settings(
Expand All @@ -69,14 +69,14 @@ lazy val docs =
project
.in(file("zio-aes-docs"))
.settings(
moduleName := "zio-AES-docs",
moduleName := "zio-aes-docs",
scalacOptions -= "-Yno-imports",
scalacOptions -= "-Xfatal-warnings",
projectName := "zio-AES",
mainModuleName := (`zio-AES` / moduleName).value,
projectName := "zio-aes",
mainModuleName := (`zio-aes` / moduleName).value,
projectStage := ProjectStage.ProductionReady,
ScalaUnidoc / unidoc / unidocProjectFilter := inProjects(`zio-AES`),
readmeLicense += s"\n\nCopyright 2023-${java.time.Year.now()} Jules Ivanic and the zio-AES contributors.",
ScalaUnidoc / unidoc / unidocProjectFilter := inProjects(`zio-aes`),
readmeLicense += s"\n\nCopyright 2023-${java.time.Year.now()} Jules Ivanic and the zio-aes contributors.",
)
.enablePlugins(WebsitePlugin)
.dependsOn(`zio-AES`)
.dependsOn(`zio-aes`)

0 comments on commit 5912f46

Please sign in to comment.