Skip to content

Commit

Permalink
Bump Version.
Browse files Browse the repository at this point in the history
Switch to running self-tests on github actions.
Bump dates.
  • Loading branch information
mvandervoord committed Jan 29, 2021
1 parent 28c7214 commit e2eb965
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 20 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
---
# Continuous Integration Workflow: Test case suite run + validation build check
name: CI

# Controls when the action will run.
# Triggers the workflow on push or pull request events but only for the master branch
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]

jobs:
# Job: Unit test suite
unit-tests:
name: "Unit Tests"
runs-on: ubuntu-latest
steps:
# Install Ceedling
- name: Install Ceedling
run: |
sudo gem install ceedling
# Run Tests
- name: Run All Self Tests
run: |
ceedling clobber test:all
3 changes: 2 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
build
build
*.sublime-*
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -241,7 +241,7 @@ License
=======

*This software is licensed under the MIT License:
Copyright (c) 2007-2019 Mark VanderVoord*
Copyright (c) 2007-2021 Mark VanderVoord*

*Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.*
Expand Down
2 changes: 1 addition & 1 deletion docs/CException.md
Original file line number Diff line number Diff line change
Expand Up @@ -311,7 +311,7 @@ LICENSE

This software is licensed under the MIT License

Copyright (c) 2007-2020 Mark VanderVoord
Copyright (c) 2007-2021 Mark VanderVoord

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
2 changes: 1 addition & 1 deletion lib/CException.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ extern "C"

#define CEXCEPTION_VERSION_MAJOR 1
#define CEXCEPTION_VERSION_MINOR 3
#define CEXCEPTION_VERSION_BUILD 2
#define CEXCEPTION_VERSION_BUILD 3
#define CEXCEPTION_VERSION ((CEXCEPTION_VERSION_MAJOR << 16) | (CEXCEPTION_VERSION_MINOR << 8) | CEXCEPTION_VERSION_BUILD)

//To Use CException, you have a number of options:
Expand Down

0 comments on commit e2eb965

Please sign in to comment.