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 | 21 | "macFrameworkPath": [ |
| 22 | 22 | "/System/Library/Frameworks", |
| 23 | 23 | "/Library/Frameworks" |
| 24 | - ] | |
| 24 | + ], | |
| 25 | + "compilerPath": "/usr/bin/gcc", | |
| 26 | + "cStandard": "c11", | |
| 27 | + "cppStandard": "c++17" | |
| 25 | 28 | }, |
| 26 | 29 | { |
| 27 | 30 | "name": "Linux", |
| ... | ... | @@ -54,7 +57,10 @@ |
| 54 | 57 | ], |
| 55 | 58 | "limitSymbolsToIncludedHeaders": true, |
| 56 | 59 | "databaseFilename": "" |
| 57 | - } | |
| 60 | + }, | |
| 61 | + "compilerPath": "/usr/bin/gcc", | |
| 62 | + "cStandard": "c11", | |
| 63 | + "cppStandard": "c++17" | |
| 58 | 64 | }, |
| 59 | 65 | { |
| 60 | 66 | "name": "Win32", |
| ... | ... | @@ -74,8 +80,11 @@ |
| 74 | 80 | ], |
| 75 | 81 | "limitSymbolsToIncludedHeaders": true, |
| 76 | 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 | 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 | 6 | |
| 7 | 7 | ## [Unreleased] |
| 8 | 8 | |
| 9 | -## [v2.0.1] | |
| 9 | +## [v2.0.1] - 2017-11-27 | |
| 10 | 10 | |
| 11 | 11 | ### Fixed |
| 12 | 12 | - Fixed link to TravisCI image in README. |
| 13 | 13 | |
| 14 | -## [v2.0.0] | |
| 14 | +## [v2.0.0] - 2017-11-27 | |
| 15 | 15 | |
| 16 | 16 | ### Added |
| 17 | 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 | 22 | \ No newline at end of file | ... | ... |
README.rst
| ... | ... | @@ -6,8 +6,8 @@ CppLinuxSerial |
| 6 | 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 | 12 | .. role:: bash(code) |
| 13 | 13 | :language: bash | ... | ... |