Merge branch 'master' into development

# Conflicts:
#	.circleci/config.yml
This commit is contained in:
John Wellbelove 2020-05-12 23:52:47 +01:00
commit 02ca9e8cb7
6 changed files with 9 additions and 6 deletions

View File

@ -10,7 +10,7 @@ jobs:
- checkout:
- run:
name: Listing0
command: 'ls'
command: 'ls -lrt'
- run:
name: Creating Build Files
command: 'cmake -Bbuild test/'
@ -28,4 +28,4 @@ jobs:
command: 'cat /root/project/build/CMakeFiles/CMakeOutput.log'
- run:
name: ETL Unit Testing
command: './build/etl_tests'
command: './build/etl_tests'

View File

@ -1,7 +1,6 @@
Embedded Template Library (ETL)
-------------------------
AppVeyor
[![Build status](https://ci.appveyor.com/api/projects/status/b7jgecv7unqjw4u0/branch/master?svg=true)](https://ci.appveyor.com/project/jwellbelove/etl/branch/master)
[![ETLCPP](https://circleci.com/gh/ETLCPP/etl.svg?style=svg)](https://app.circleci.com/pipelines/github/ETLCPP/etl)
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/3c14cd918ccf40008d0bcd7b083d5946)](https://www.codacy.com/manual/jwellbelove/etl?utm_source=github.com&utm_medium=referral&utm_content=ETLCPP/etl&utm_campaign=Badge_Grade)

View File

@ -39,7 +39,7 @@ SOFTWARE.
#define ETL_VERSION_MAJOR 18
#define ETL_VERSION_MINOR 1
#define ETL_VERSION_PATCH 2
#define ETL_VERSION_PATCH 3
#define ETL_VERSION ETL_STRINGIFY(ETL_VERSION_MAJOR) "." ETL_STRINGIFY(ETL_VERSION_MINOR) "." ETL_STRINGIFY(ETL_VERSION_PATCH)
#define ETL_VERSION_W ETL_STRINGIFY(ETL_VERSION_MAJOR) L"." ETL_STRINGIFY(ETL_VERSION_MINOR) L"." ETL_STRINGIFY(ETL_VERSION_PATCH)
#define ETL_VERSION_U16 ETL_STRINGIFY(ETL_VERSION_MAJOR) u"." ETL_STRINGIFY(ETL_VERSION_MINOR) u"." ETL_STRINGIFY(ETL_VERSION_PATCH)

View File

@ -1,6 +1,6 @@
{
"name": "Embedded Template Library",
"version": "18.1.2",
"version": "18.1.3",
"authors": {
"name": "John Wellbelove",
"email": "john.wellbelove@etlcpp.com"

View File

@ -1,5 +1,5 @@
name=Embedded Template Library
version=18.1.2
version=18.1.3
author= John Wellbelove <john.wellbelove@etlcpp.com>
maintainer=John Wellbelove <john.wellbelove@etlcpp.com>
license=MIT

View File

@ -1,3 +1,7 @@
===============================================================================
18.1.3
Added CircleCI yml file for master branch
===============================================================================
18.1.2
Fixed undefined behaviour warning for #define that contained 'define'.