Skip to content

Commit 14278d7

Browse files
authored
Merge pull request #2 from abranhe/1.0.1
jump to 1.0.1
2 parents e04e18c + 551a26c commit 14278d7

File tree

5 files changed

+6
-9
lines changed

5 files changed

+6
-9
lines changed

.travis.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,7 @@
11
language: c
22
compiler:
3-
# - clang
3+
- clang
44
- gcc
55
script: make run-test
6-
after_script: sudo pip install cpp-coveralls && make run-coverage && coveralls --exclude test.c
7-
86
notifications:
97
email: false

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
PREFIX ?= /usr/local
22

3-
SRC = cli.c deps/binary.c/binary.c
3+
SRC = binary-cli.c deps/binary.c/binary.c
44

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

cli.c renamed to binary-cli.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ main(int argc, char **argv) {
4040

4141
if (argc == 2) {
4242
if (!strcmp(a, "-v") || !strcmp(a, "--version")) {
43-
printf("%s", "1.0.0\n");
43+
printf("%s", "1.0.1\n");
4444
return 0;
4545
}
4646

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,14 @@
11
{
22
"name": "binary.c",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "An small library to work with binary numbers",
55
"license": "MIT",
66
"keywords": [
77
"binary",
88
"binary-numbers",
99
"bin",
10-
"cli"
10+
"cli",
11+
"binary"
1112
],
1213
"repo": "abranhe/binary.c",
1314
"dependencies": {

readme.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,4 @@ An small library to work with binary numbers
7676
[license]: https://github.com/abranhe/binary/blob/master/license
7777
[travis-badge]: https://img.shields.io/travis/abranhe/binary.svg
7878
[travis-status]: https://travis-ci.org/abranhe/binary
79-
[coverage-badge]: https://img.shields.io/coveralls/abranhe/binary.svg
80-
[coverage-status]: https://coveralls.io/r/abranhe/binary?branch=master
8179
[binary]: https://github.com/abranhe/binary.c

0 commit comments

Comments
 (0)