tigger 0.0.8 → 0.0.9

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +1 -1
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -261,7 +261,7 @@ We now walk through a simple use case of committing two files to a repository:
261
261
  5. Post the commit tree SHA together with the latest commit SHA. A commit SHA is returned. The endpoint is `/git/commits`.
262
262
  6. Finally, update the repository's head by posting the commit SHA. The endpoint is `/git/refs/heads/master`.
263
263
 
264
- Perhaps the best thing to say about this process is that it kind of makes sense as familiarity grows.
264
+ Perhaps the best thing to say about this process is that it begins to make sense as familiarity grows.
265
265
 
266
266
  As an aside, it is likely that there will be some interaction with a database as well as with the GitHub API in the course of any handler's execution and therefore it might be worth looking at the [Murmuration](https://github.com/djalbat/murmuration) package. In fact the example handlers and operations were originally based on functions written to work with this package.
267
267
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "tigger",
3
3
  "author": "James Smith",
4
- "version": "0.0.8",
4
+ "version": "0.0.9",
5
5
  "license": "MIT, Anti-996",
6
6
  "homepage": "https://github.com/djalbat/tigger",
7
7
  "description": "Tales the fun out of using the GitHub API.",