Skip to content

Commit

Permalink
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Chore: Remove the beta from release branches
Browse files Browse the repository at this point in the history
tonilastre committed May 12, 2023
1 parent 32217c6 commit 7b36eec
Showing 4 changed files with 15 additions and 16 deletions.
1 change: 0 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -4,7 +4,6 @@ on:
push:
branches:
- main
- beta

jobs:
publish:
10 changes: 7 additions & 3 deletions .releaserc
Original file line number Diff line number Diff line change
@@ -1,13 +1,17 @@
{
"plugins": [
["@semantic-release/commit-analyzer"],
["@semantic-release/release-notes-generator"],
["@semantic-release/commit-analyzer", {
"preset": "eslint"
}],
["@semantic-release/release-notes-generator", {
"preset": "eslint"
}],
"@semantic-release/changelog",
"@semantic-release/npm",
"@semantic-release/github",
["@semantic-release/git", {
"assets": ["package.json", "CHANGELOG.md"],
"message": "Chore(release): ${nextRelease.version} [skip ci]\n\n${nextRelease.notes}"
}]
],
]
}
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -24,7 +24,7 @@ Orb is a graph visualization library. Read more about Orb in the following guide
* [Styling nodes and edges](./docs/styles.md)
* [Handling events](./docs/events.md)
* Using different views
* [Default view](./docs/view-default.md)
* [Default view](./docs/view-default.md)
* [Map view](./docs/view-map.md)

## Install
@@ -36,7 +36,7 @@ Orb is a graph visualization library. Read more about Orb in the following guide
### With `npm` (recommended)

```
npm install @memgraph/orb@beta
npm install @memgraph/orb
```

Below you can find a simple Typescript example using Orb to visualize a small graph. Feel
@@ -106,7 +106,7 @@ free to check other Javascript examples in `examples/` directory.
<div id="graph"></div>
<script>
const container = document.getElementById("graph");
const nodes = [
{ id: 1, label: "Orb" },
{ id: 2, label: "Graph" },
@@ -116,13 +116,13 @@ free to check other Javascript examples in `examples/` directory.
{ id: 1, start: 1, end: 2, label: "DRAWS" },
{ id: 2, start: 2, end: 3, label: "ON" },
];
// First `Orb` is just a namespace of the JS package
// First `Orb` is just a namespace of the JS package
const orb = new Orb.OrbView(container);
// Initialize nodes and edges
orb.data.setup({ nodes, edges });
// Render and recenter the view
orb.render(() => {
orb.recenter();
6 changes: 1 addition & 5 deletions package.json
Original file line number Diff line number Diff line change
@@ -106,11 +106,7 @@
},
"release": {
"branches": [
"main",
{
"name": "beta",
"prerelease": true
}
"main"
]
}
}

0 comments on commit 7b36eec

Please sign in to comment.