Skip to content

Commit

Permalink
Merge pull request #23 from shalecraig/better_versioning_system
Browse files Browse the repository at this point in the history
Changed the current version to 1.0.0b, and the future to be 1.1.0.
  • Loading branch information
shalecraig committed Jan 18, 2014
2 parents 1d18ace + 695815b commit 09d8278
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
accel [![Build Status](https://travis-ci.org/shalecraig/accel.png?branch=master)](https://travis-ci.org/shalecraig/accel)
=====

[alpha] C gesture recognition library from accelerometers, written with the Pebble in mind. Currently version 0.1.0a.
[beta] C gesture recognition library from accelerometers, written with the Pebble in mind. Currently version 1.0.0b.


### TODO:

- V0.2.0a:
- V1.1.0:
- [ ] Decide on having callbacks instead of (or) `accel_find_most_likely_gesture`
- Maybe needs a const for the values?
- [ ] Implement a `public` reset gesture method
Expand Down
2 changes: 1 addition & 1 deletion sample/simple-accelerometer/src/accel.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
#define ACCEL_VERSION_GEN(major, minor, point, isBeta, isAlpha) \
(4*(100*((100*major)+minor)+point) + 3 - (isAlpha?2:0) - (isBeta?1:0))

#define ACCEL_VERSION_CODE ACCEL_VERSION_GEN(0, 1, 0, false, true)
#define ACCEL_VERSION_CODE ACCEL_VERSION_GEN(1, 0, 0, true, false)

struct internalAccelState;

Expand Down
2 changes: 1 addition & 1 deletion src/accel.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#define ACCEL_VERSION_GEN(major, minor, point, isBeta, isAlpha) \
(4*(100*((100*major)+minor)+point) + 3 - (isAlpha?2:0) - (isBeta?1:0))

#define ACCEL_VERSION_CODE ACCEL_VERSION_GEN(0, 1, 0, false, true)
#define ACCEL_VERSION_CODE ACCEL_VERSION_GEN(1, 0, 0, true, false)

struct internalAccelState;

Expand Down

0 comments on commit 09d8278

Please sign in to comment.