Skip to content

Update version #44

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: 1.1
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ An external workflow picks up this directory, embeds it into the Neo4j docs, and
```
https://neo4j.com/labs/rdflib-neo4j/{version}
```
For example: https://neo4j.com/labs/rdflib-neo4j/1.0
For example: https://neo4j.com/labs/rdflib-neo4j/1.1

## Local Build
To compile and view the documentation locally, navigate to this (`./docs`) folder and run:
Expand Down
4 changes: 2 additions & 2 deletions docs/antora.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
name: rdflib-neo4j
version: "1.0"
version: "1.1"
title: RDFLib-Neo4j
start_page: ROOT:index.adoc
nav:
- modules/ROOT/nav.adoc

asciidoc:
attributes:
docs-version: "1.0"
docs-version: "1.1"
page-product: RDFLib-Neo4j
page-type: RDFLib-Neo4j Manual
page-canonical-root: /labs
2 changes: 1 addition & 1 deletion docs/server.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const express = require('express')

const app = express()
const version = "1.0"
const version = "1.1"
app.use(express.static('./build/site'))
app.get('/', (req, res) => res.redirect('rdflib-neo4j/' + version))
app.listen(8000, () => console.log('📘 http://localhost:8000'))