@dotinc/ogre 0.3.0-canary.5167e57.0 → 0.3.0
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.
- package/CHANGELOG.md +17 -0
- package/README.md +3 -1
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
# v0.3.0 (Sun Mar 13 2022)
|
|
2
|
+
|
|
3
|
+
#### 🚀 Enhancement
|
|
4
|
+
|
|
5
|
+
- Implement tags [#6](https://github.com/dotindustries/ogre/pull/6) ([@nadilas](https://github.com/nadilas))
|
|
6
|
+
- feat: implement tags ([@nadilas](https://github.com/nadilas))
|
|
7
|
+
|
|
8
|
+
#### 🐛 Bug Fix
|
|
9
|
+
|
|
10
|
+
- doc: update README.md ([@nadilas](https://github.com/nadilas))
|
|
11
|
+
|
|
12
|
+
#### Authors: 1
|
|
13
|
+
|
|
14
|
+
- [@nadilas](https://github.com/nadilas)
|
|
15
|
+
|
|
16
|
+
---
|
|
17
|
+
|
|
1
18
|
# v0.2.0 (Sun Mar 13 2022)
|
|
2
19
|
|
|
3
20
|
#### 🚀 Enhancement
|
package/README.md
CHANGED
|
@@ -7,7 +7,9 @@ keep the history around for a bit longer.
|
|
|
7
7
|
|
|
8
8
|
- Commit
|
|
9
9
|
- Branch
|
|
10
|
+
- Tags
|
|
10
11
|
- Checkout
|
|
12
|
+
- Visualization via `@dotinc/ogre-react`
|
|
11
13
|
- Merge
|
|
12
14
|
- fast-forward
|
|
13
15
|
|
|
@@ -35,6 +37,7 @@ repo.data.name = 'a fancier name'
|
|
|
35
37
|
await repo.commit('change name', 'author <author@test.com>')
|
|
36
38
|
repo.checkout('main')
|
|
37
39
|
repo.merge('add_details')
|
|
40
|
+
repo.tag('v1.0.0')
|
|
38
41
|
|
|
39
42
|
// or b) discard change and go back
|
|
40
43
|
// by using the branch name
|
|
@@ -45,7 +48,6 @@ repo.data.name = 'a fancier name'
|
|
|
45
48
|
|
|
46
49
|
## TODO
|
|
47
50
|
|
|
48
|
-
- [ ] Visualization
|
|
49
51
|
- [ ] Merge
|
|
50
52
|
- [ ] recursive
|
|
51
53
|
- [ ] octopus
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"type": "git",
|
|
5
5
|
"url": "https://github.com/dotindustries/ogre.git"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.3.0
|
|
7
|
+
"version": "0.3.0",
|
|
8
8
|
"description": "Git-like repository for in-memory object versioning",
|
|
9
9
|
"main": "lib/index.js",
|
|
10
10
|
"types": "lib/index.d.ts",
|
|
@@ -45,5 +45,5 @@
|
|
|
45
45
|
"registry": "https://registry.npmjs.org/",
|
|
46
46
|
"access": "public"
|
|
47
47
|
},
|
|
48
|
-
"gitHead": "
|
|
48
|
+
"gitHead": "ac487e2d4fc3b1a18dd02b20edc89cf0503c3a98"
|
|
49
49
|
}
|