Skip to content

Commit

Permalink
Merge pull request #2 from abranhe/1.0.1
Browse files Browse the repository at this point in the history
jump to 1.0.1
  • Loading branch information
abranhe authored Nov 9, 2018
2 parents e04e18c + 551a26c commit 14278d7
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 9 deletions.
4 changes: 1 addition & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,9 +1,7 @@
language: c
compiler:
# - clang
- clang
- gcc
script: make run-test
after_script: sudo pip install cpp-coveralls && make run-coverage && coveralls --exclude test.c

notifications:
email: false
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
PREFIX ?= /usr/local

SRC = cli.c deps/binary.c/binary.c
SRC = binary-cli.c deps/binary.c/binary.c

OBJ_SRC = $(SRC:.c=.o)

Expand Down
2 changes: 1 addition & 1 deletion cli.c → binary-cli.c
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ main(int argc, char **argv) {

if (argc == 2) {
if (!strcmp(a, "-v") || !strcmp(a, "--version")) {
printf("%s", "1.0.0\n");
printf("%s", "1.0.1\n");
return 0;
}

Expand Down
5 changes: 3 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"name": "binary.c",
"version": "1.0.0",
"version": "1.0.1",
"description": "An small library to work with binary numbers",
"license": "MIT",
"keywords": [
"binary",
"binary-numbers",
"bin",
"cli"
"cli",
"binary"
],
"repo": "abranhe/binary.c",
"dependencies": {
Expand Down
2 changes: 0 additions & 2 deletions readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,4 @@ An small library to work with binary numbers
[license]: https://github.com/abranhe/binary/blob/master/license
[travis-badge]: https://img.shields.io/travis/abranhe/binary.svg
[travis-status]: https://travis-ci.org/abranhe/binary
[coverage-badge]: https://img.shields.io/coveralls/abranhe/binary.svg
[coverage-status]: https://coveralls.io/r/abranhe/binary?branch=master
[binary]: https://github.com/abranhe/binary.c

0 comments on commit 14278d7

Please sign in to comment.