We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7ec7d49 commit 08c901fCopy full SHA for 08c901f
csv/README.md
@@ -20,14 +20,19 @@ To use this extension on Maven-based projects, use following dependency:
20
<dependency>
21
<groupId>com.fasterxml.jackson.dataformat</groupId>
22
<artifactId>jackson-dataformat-csv</artifactId>
23
- <version>2.12.1</version>
+ <version>2.13.0</version>
24
</dependency>
25
```
26
27
(with whatever is the latest version)
28
29
# Usage
30
31
+## How-To Documents
32
+
33
+* [Reading CSV with Jackson](https://cowtowncoder.medium.com/reading-csv-with-jackson-c4e74a15ddc1) (April 2021)
34
+* [Writing CSV with Jackson](https://cowtowncoder.medium.com/writing-csv-with-jackson-204fdb3c9dac) (October 2021)
35
36
## CSV Schema: what is that?
37
38
CSV documents are essentially rows of data, instead of JSON Objects (sequences of key/value pairs).
0 commit comments