@dotinc/ogre-react 0.12.0 → 0.12.1
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 +14 -0
- package/OgreGraph.tsx +1 -0
- package/package.json +3 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,17 @@
|
|
|
1
|
+
# v0.12.1 (Sun Sep 29 2024)
|
|
2
|
+
|
|
3
|
+
#### 🐛 Bug Fix
|
|
4
|
+
|
|
5
|
+
- fix: export enum from gitgraphjs [#188](https://github.com/dotindustries/ogre/pull/188) ([@nadilas](https://github.com/nadilas))
|
|
6
|
+
- chore: fix npm ([@nadilas](https://github.com/nadilas))
|
|
7
|
+
- fix: export enum from gitgraphjs ([@nadilas](https://github.com/nadilas))
|
|
8
|
+
|
|
9
|
+
#### Authors: 1
|
|
10
|
+
|
|
11
|
+
- [@nadilas](https://github.com/nadilas)
|
|
12
|
+
|
|
13
|
+
---
|
|
14
|
+
|
|
1
15
|
# v0.10.0 (Sun Apr 07 2024)
|
|
2
16
|
|
|
3
17
|
#### 🚀 Enhancement
|
package/OgreGraph.tsx
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@dotinc/ogre-react",
|
|
3
|
-
"version": "0.12.
|
|
3
|
+
"version": "0.12.1",
|
|
4
4
|
"main": "./index.tsx",
|
|
5
5
|
"types": "./index.tsx",
|
|
6
6
|
"license": "MIT",
|
|
@@ -10,6 +10,7 @@
|
|
|
10
10
|
},
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@dotinc/ogre": "^0.12.0",
|
|
13
|
+
"@gitgraph/core": "^1.5.0",
|
|
13
14
|
"@gitgraph/react": "^1.6.0"
|
|
14
15
|
},
|
|
15
16
|
"devDependencies": {
|
|
@@ -23,5 +24,5 @@
|
|
|
23
24
|
"registry": "https://registry.npmjs.org/",
|
|
24
25
|
"access": "public"
|
|
25
26
|
},
|
|
26
|
-
"gitHead": "
|
|
27
|
+
"gitHead": "233f340372e0342a5d95119cfbcc55910e8a6564"
|
|
27
28
|
}
|