Skip to content

Commit 265e010

Browse files
committed
Add flint support and bump version
1 parent 4b575a4 commit 265e010

File tree

5 files changed

+17
-15
lines changed

5 files changed

+17
-15
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Linked List [![Build Status](http://img.shields.io/travis/smallstoneapps/linked-list.svg?style=flat-square)](https://travis-ci.org/smallstoneapps/linked-list/) [![npm (scoped)](https://img.shields.io/npm/v/@smallstoneapps/linked-list.svg?maxAge=2592000&style=flat-square)](https://www.npmjs.com/package/@smallstoneapps/linked-list) [![MIT License](http://img.shields.io/badge/license-MIT-lightgray.svg?style=flat-square)](./LICENSE)
1+
# Linked List [![Build Status](http://img.shields.io/travis/smallstoneapps/linked-list.svg?style=flat-square)](https://travis-ci.org/smallstoneapps/linked-list/) [![npm (scoped)](https://img.shields.io/npm/v/@rebble/linked-list.svg?maxAge=2592000&style=flat-square)](https://www.npmjs.com/package/@rebble/linked-list) [![MIT License](http://img.shields.io/badge/license-MIT-lightgray.svg?style=flat-square)](./LICENSE)
22

33
A simple linked list implementation for Pebble apps and watchfaces.
44

@@ -9,7 +9,7 @@ A simple linked list implementation for Pebble apps and watchfaces.
99
To install the package to your app, use the pebble tool:
1010

1111
```
12-
pebble package install @smallstoneapps/linked-list
12+
pebble package install @rebble/linked-list
1313
```
1414

1515
## Usage
@@ -18,7 +18,7 @@ pebble package install @smallstoneapps/linked-list
1818
// This is not a complete example, but should demonstrate the basic usage of
1919
// the Linked List library.
2020

21-
#include <@smallstoneapps/linked-list/linked-list.h>
21+
#include <@rebble/linked-list/linked-list.h>
2222

2323
LinkedRoot* root;
2424

demo/package.json

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@smallstoneaps/linked-list-demo",
3-
"version": "1.1.0",
2+
"name": "@rebble/linked-list-demo",
3+
"version": "1.2.0",
44
"author": "Matthew Tole",
55
"description": "Demo app to show the basic usage of the linked-list package",
66
"main": "src/demo.c",
@@ -10,7 +10,7 @@
1010
"license": "MIT",
1111
"private": true,
1212
"dependencies": {
13-
"@smallstoneapps/linked-list": "../"
13+
"@rebble/linked-list": "../"
1414
},
1515
"keywords": [
1616
"pebble-app"
@@ -35,7 +35,8 @@
3535
"basalt",
3636
"chalk",
3737
"diorite",
38-
"emery"
38+
"emery",
39+
"flint"
3940
],
4041
"capabilities": []
4142
}

demo/src/demo.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#include <pebble.h>
2-
#include <@smallstoneapps/linked-list/linked-list.h>
2+
#include <@rebble/linked-list/linked-list.h>
33

44
static void init(void);
55
static void deinit(void);

package.json

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"name": "@smallstoneapps/linked-list",
3-
"version": "1.4.0",
2+
"name": "@rebble/linked-list",
3+
"version": "1.5.0",
44
"description": "Pebble library for doing linked lists",
55
"main": "src/c/linked-list.c",
66
"directories": {
@@ -14,14 +14,14 @@
1414
},
1515
"repository": {
1616
"type": "git",
17-
"url": "git+https://github.com/smallstoneapps/linked-list.git"
17+
"url": "git+https://github.com/pebble-dev/linked-list.git"
1818
},
1919
"author": "Matthew Tole <[email protected]>",
2020
"license": "MIT",
2121
"bugs": {
22-
"url": "https://github.com/smallstoneapps/linked-list/issues"
22+
"url": "https://github.com/pebble-dev/linked-list/issues"
2323
},
24-
"homepage": "https://github.com/smallstoneapps/linked-list#readme",
24+
"homepage": "https://github.com/pebble-dev/linked-list#readme",
2525
"pebble": {
2626
"projectType": "package",
2727
"sdkVersion": "3",
@@ -30,7 +30,8 @@
3030
"basalt",
3131
"chalk",
3232
"diorite",
33-
"emery"
33+
"emery",
34+
"flint"
3435
]
3536
},
3637
"files": [

tests/linked-list.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#include "unit.h"
33
#include "linked-list.h"
44

5-
#define VERSION_LABEL "1.4.0"
5+
#define VERSION_LABEL "1.5.0"
66

77
// Colour code definitions to make the output all pretty.
88
#define KNRM "\x1B[0m"

0 commit comments

Comments
 (0)