Skip to content

Commit

Permalink
v0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
dherault committed Jan 30, 2017
1 parent 4548cfc commit 4a585d0
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 15 deletions.
10 changes: 5 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
# Changelog

## tbd
## 0.6.0

**Breaking changes:**
- The names of generated GraphQL types are now capitalized regardless of the terminology.

**New features:**
- `resolvers.resolveSourceTypes` can now return a Promise!
- `resolvers.resolveSourceTypes` can now return a Promise.

**Miscellaneous:**
- `SemanticGraph#toString` now displays the number of triples in the graph.
- Triples with predicates not used by the lib are not stored in memory.
- Improved documentation
- Improved tests
- Improved documentation.
- Improved tests.

## 0.5.1

Expand All @@ -33,7 +33,7 @@

**Miscellaneous:**
- Tests! :tada: (very basic for now)
- Improved documentation
- Improved documentation.

## 0.4.0

Expand Down
17 changes: 7 additions & 10 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"name": "semantic-graphql",
"version": "0.5.1",
"description": "Create GraphQL schemas from RDF-based ontologies",
"main": "index.js",
"version": "0.6.0",
"description": "Create GraphQL schemas from RDF ontologies",
"author": "David Hérault <dherault@nelson.ai> (https://github.com/dherault)",
"license": "MIT",
"main": "index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/nelson-ai/semantic-graphql.git"
Expand All @@ -14,7 +14,10 @@
},
"homepage": "https://github.com/nelson-ai/semantic-graphql#readme",
"engines": {
"node": ">=6.0.0"
"node" : ">=6.9.1"
},
"options": {
"mocha": "--bail --check-leaks"
},
"scripts": {
"test": "./node_modules/.bin/mocha $npm_package_options_mocha",
Expand All @@ -23,12 +26,6 @@
"coverage:all": "npm run coverage && npm run coverage:serve",
"dev": "cd examples/basic && npm run watch"
},
"options": {
"mocha": "--bail --check-leaks"
},
"engines": {
"node" : ">=6.9.1"
},
"devDependencies": {
"chai": "^3.5.0",
"eslint": "^3.14.1",
Expand Down

0 comments on commit 4a585d0

Please sign in to comment.