Skip to content

Commit

Permalink
Update README & version numbers
Browse files Browse the repository at this point in the history
Project is now more CMake FetchContent friendly
  • Loading branch information
vincentlaucsb committed May 18, 2024
1 parent 6d40fe8 commit ed5a1f6
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 7 deletions.
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ do not hesitate to report it.

## Documentation

In addition to the [Features & Examples](#features--examples) below, a [fully-fledged online documentation](https://vincentlaucsb.github.io/csv-parser/html/) contains more examples, details, interesting features, and instructions for less common use cases.
In addition to the [Features & Examples](#features--examples) below, a [fully-fledged online documentation](https://vincela.com/csv/) contains more examples, details, interesting features, and instructions for less common use cases.

## Integration

Expand Down Expand Up @@ -86,6 +86,10 @@ target_link_libraries(<your program> csv)
```

#### Avoid cloning with FetchContent
Don't want to clone? No problem. There's also [a simple example documenting how to use CMake's FetchContent module to integrate this library](https://github.com/vincentlaucsb/csv-parser/wiki/Example:-Using-csv%E2%80%90parser-with-CMake-and-FetchContent).


## Features & Examples
### Reading an Arbitrarily Large File (with Iterators)
With this library, you can easily stream over a large file without reading its entirety into memory.
Expand Down
4 changes: 2 additions & 2 deletions include/csv.hpp
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
/*
CSV for C++, version 2.1.3
CSV for C++, version 2.2.1
https://github.com/vincentlaucsb/csv-parser
MIT License
Copyright (c) 2017-2020 Vincent La
Copyright (c) 2017-2024 Vincent La
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions single_include/csv.hpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#pragma once
/*
CSV for C++, version 2.1.3
CSV for C++, version 2.2.1
https://github.com/vincentlaucsb/csv-parser
MIT License
Copyright (c) 2017-2020 Vincent La
Copyright (c) 2017-2024 Vincent La
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
4 changes: 2 additions & 2 deletions single_include_test/csv.hpp
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#pragma once
/*
CSV for C++, version 2.1.3
CSV for C++, version 2.2.1
https://github.com/vincentlaucsb/csv-parser
MIT License
Copyright (c) 2017-2020 Vincent La
Copyright (c) 2017-2024 Vincent La
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down

0 comments on commit ed5a1f6

Please sign in to comment.