Commit 77b01015caf76db7cf25c1f79cd34fb293fe9c8a
Merge branch 'develop'
Showing
5 changed files
with
40 additions
and
9 deletions
.gitignore
.vscode/c_cpp_properties.json
| @@ -21,7 +21,10 @@ | @@ -21,7 +21,10 @@ | ||
| 21 | "macFrameworkPath": [ | 21 | "macFrameworkPath": [ |
| 22 | "/System/Library/Frameworks", | 22 | "/System/Library/Frameworks", |
| 23 | "/Library/Frameworks" | 23 | "/Library/Frameworks" |
| 24 | - ] | 24 | + ], |
| 25 | + "compilerPath": "/usr/bin/gcc", | ||
| 26 | + "cStandard": "c11", | ||
| 27 | + "cppStandard": "c++17" | ||
| 25 | }, | 28 | }, |
| 26 | { | 29 | { |
| 27 | "name": "Linux", | 30 | "name": "Linux", |
| @@ -54,7 +57,10 @@ | @@ -54,7 +57,10 @@ | ||
| 54 | ], | 57 | ], |
| 55 | "limitSymbolsToIncludedHeaders": true, | 58 | "limitSymbolsToIncludedHeaders": true, |
| 56 | "databaseFilename": "" | 59 | "databaseFilename": "" |
| 57 | - } | 60 | + }, |
| 61 | + "compilerPath": "/usr/bin/gcc", | ||
| 62 | + "cStandard": "c11", | ||
| 63 | + "cppStandard": "c++17" | ||
| 58 | }, | 64 | }, |
| 59 | { | 65 | { |
| 60 | "name": "Win32", | 66 | "name": "Win32", |
| @@ -74,8 +80,11 @@ | @@ -74,8 +80,11 @@ | ||
| 74 | ], | 80 | ], |
| 75 | "limitSymbolsToIncludedHeaders": true, | 81 | "limitSymbolsToIncludedHeaders": true, |
| 76 | "databaseFilename": "" | 82 | "databaseFilename": "" |
| 77 | - } | 83 | + }, |
| 84 | + "compilerPath": "/usr/bin/gcc", | ||
| 85 | + "cStandard": "c11", | ||
| 86 | + "cppStandard": "c++17" | ||
| 78 | } | 87 | } |
| 79 | ], | 88 | ], |
| 80 | - "version": 3 | 89 | + "version": 4 |
| 81 | } | 90 | } |
| 82 | \ No newline at end of file | 91 | \ No newline at end of file |
CHANGELOG.md
| @@ -6,12 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. | @@ -6,12 +6,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0. | ||
| 6 | 6 | ||
| 7 | ## [Unreleased] | 7 | ## [Unreleased] |
| 8 | 8 | ||
| 9 | -## [v2.0.1] | 9 | +## [v2.0.1] - 2017-11-27 |
| 10 | 10 | ||
| 11 | ### Fixed | 11 | ### Fixed |
| 12 | - Fixed link to TravisCI image in README. | 12 | - Fixed link to TravisCI image in README. |
| 13 | 13 | ||
| 14 | -## [v2.0.0] | 14 | +## [v2.0.0] - 2017-11-27 |
| 15 | 15 | ||
| 16 | ### Added | 16 | ### Added |
| 17 | - Added CMake build support. | 17 | - Added CMake build support. |
LICENSE.txt
0 → 100644
| 1 | +MIT License | ||
| 2 | + | ||
| 3 | +Copyright (c) 2019 Geoffrey Benjamin Mark Hunter | ||
| 4 | + | ||
| 5 | +Permission is hereby granted, free of charge, to any person obtaining a copy | ||
| 6 | +of this software and associated documentation files (the "Software"), to deal | ||
| 7 | +in the Software without restriction, including without limitation the rights | ||
| 8 | +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
| 9 | +copies of the Software, and to permit persons to whom the Software is | ||
| 10 | +furnished to do so, subject to the following conditions: | ||
| 11 | + | ||
| 12 | +The above copyright notice and this permission notice shall be included in all | ||
| 13 | +copies or substantial portions of the Software. | ||
| 14 | + | ||
| 15 | +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
| 16 | +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
| 17 | +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
| 18 | +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
| 19 | +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
| 20 | +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE | ||
| 21 | +SOFTWARE. | ||
| 0 | \ No newline at end of file | 22 | \ No newline at end of file |
README.rst
| @@ -6,8 +6,8 @@ CppLinuxSerial | @@ -6,8 +6,8 @@ CppLinuxSerial | ||
| 6 | Serial port library written in C++ | 6 | Serial port library written in C++ |
| 7 | ---------------------------------- | 7 | ---------------------------------- |
| 8 | 8 | ||
| 9 | -.. image:: https://travis-ci.org/mbedded-ninja/CppLinuxSerial.svg?branch=master | ||
| 10 | - :target: https://travis-ci.org/mbedded-ninja/CppLinuxSerial | 9 | +.. image:: https://travis-ci.org/gbmhunter/CppLinuxSerial.svg?branch=master |
| 10 | + :target: https://travis-ci.org/gbmhunter/CppLinuxSerial | ||
| 11 | 11 | ||
| 12 | .. role:: bash(code) | 12 | .. role:: bash(code) |
| 13 | :language: bash | 13 | :language: bash |