You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: e-circe/README.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[//]: #"This file is generated by [mdoc](https://scalameta.org/mdoc). Do not edit it directly as it will be overwritten. Instead edit corresponding file in docs folder."
This is a Json codec implementation for `E` and `EOr` types based on [circe](https://circe.github.io/circe). It provides circe's `Decoder`s and `Encoder`s as well as e's own `Codec` (see [e-scala](/e-scala/README.md#3-codec-decoder-and-encoder) docs).
6
6
@@ -9,7 +9,7 @@ This is a Json codec implementation for `E` and `EOr` types based on [circe](htt
9
9
If you use SBT, add following to your `build.sbt`:
Copy file name to clipboardexpand all lines: e-gson/README.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[//]: #"This file is generated by [mdoc](https://scalameta.org/mdoc). Do not edit it directly as it will be overwritten. Instead edit corresponding file in docs folder."
This is a Json codec implementation for `E` and `EOr` types based on [gson](https://github.com/google/gson). It provides gson's `JsonDeserializer`s and `JsonSerializer`s as well as e's own `Codec` (see [e-java](/e-java/README.md#3-codec-decoder-and-encoder) docs).
6
6
@@ -10,7 +10,7 @@ If you use Gradle, add following to your project's `build.gradle`:
10
10
11
11
```javascript
12
12
dependencies {
13
-
implementation('dev.akif:e-gson:3.0.0-SNAPSHOT')
13
+
implementation('dev.akif:e-gson:3.0.0')
14
14
}
15
15
```
16
16
@@ -21,15 +21,15 @@ If you use Maven, add following to your `pom.xml`:
21
21
<dependency>
22
22
<groupId>dev.akif</groupId>
23
23
<artifactId>e-gson</artifactId>
24
-
<version>3.0.0-SNAPSHOT</version>
24
+
<version>3.0.0</version>
25
25
</dependency>
26
26
</dependencies>
27
27
```
28
28
29
29
If you use SBT, add following to your `build.sbt`:
Copy file name to clipboardexpand all lines: e-java/README.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[//]: #"This file is generated by [mdoc](https://scalameta.org/mdoc). Do not edit it directly as it will be overwritten. Instead edit corresponding file in docs folder."
This is the main implementation of e in Java. It contains two main types [E](src/main/java/e/java/E.java) and [EOr](src/main/java/e/java/EOr.java). It also contains definitions of decoding and encoding for these. Implementations of decoding and encoding are provided in separate modules.
6
6
@@ -10,7 +10,7 @@ If you use Gradle, add following to your project's `build.gradle`:
10
10
11
11
```javascript
12
12
dependencies {
13
-
implementation('dev.akif:e-java:3.0.0-SNAPSHOT')
13
+
implementation('dev.akif:e-java:3.0.0')
14
14
}
15
15
```
16
16
@@ -21,15 +21,15 @@ If you use Maven, add following to your `pom.xml`:
21
21
<dependency>
22
22
<groupId>dev.akif</groupId>
23
23
<artifactId>e-java</artifactId>
24
-
<version>3.0.0-SNAPSHOT</version>
24
+
<version>3.0.0</version>
25
25
</dependency>
26
26
</dependencies>
27
27
```
28
28
29
29
If you use SBT, add following to your `build.sbt`:
Copy file name to clipboardexpand all lines: e-kotlin/README.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[//]: #"This file is generated by [mdoc](https://scalameta.org/mdoc). Do not edit it directly as it will be overwritten. Instead edit corresponding file in docs folder."
This is the main implementation of e in Kotlin. It contains two main types [E](src/main/kotlin/e/kotlin/E.kt) and [EOr](src/main/kotlin/e/kotlin/EOr.kt). It also contains definitions of decoding and encoding for these. Implementations of decoding and encoding are provided in separate modules.
6
6
@@ -10,7 +10,7 @@ If you use Gradle, add following to your project's `build.gradle`:
Copy file name to clipboardexpand all lines: e-play-json/README.md
+8-8
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[//]: #"This file is generated by [mdoc](https://scalameta.org/mdoc). Do not edit it directly as it will be overwritten. Instead edit corresponding file in docs folder."
This is a Json codec implementation for `E` and `EOr` types based on [play-json]((https://github.com/playframework/play-json)). It provides play-json's `Reads` and `Writes` as well as e's own `Codec` (see [e-scala](/e-scala/README.md#3-codec-decoder-and-encoder) docs).
6
6
@@ -9,7 +9,7 @@ This is a Json codec implementation for `E` and `EOr` types based on [play-json]
9
9
If you use SBT, add following to your `build.sbt`:
Copy file name to clipboardexpand all lines: e-scala/README.md
+6-6
Original file line number
Diff line number
Diff line change
@@ -1,6 +1,6 @@
1
1
[//]: #"This file is generated by [mdoc](https://scalameta.org/mdoc). Do not edit it directly as it will be overwritten. Instead edit corresponding file in docs folder."
This is the main implementation of e in Scala. It contains two main types [E](src/main/scala/e/scala/E.scala) and [EOr](src/main/scala/e/scala/EOr.scala). It also contains definitions of decoding and encoding for these. Implementations of decoding and encoding are provided in separate modules.
6
6
@@ -9,7 +9,7 @@ This is the main implementation of e in Scala. It contains two main types [E](sr
9
9
If you use SBT, add following to your `build.sbt`:
0 commit comments