diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
index a12efba..bedbfc9 100644
--- a/CONTRIBUTING.md
+++ b/CONTRIBUTING.md
@@ -6,7 +6,7 @@ Community contributions are essential for keeping Ruby RDF great. We want to kee
This repository uses [Git Flow](https://github.com/nvie/gitflow) to manage development and release activity. All submissions _must_ be on a feature branch based on the _develop_ branch to ease staging and integration.
-* create or respond to an issue on the [Github Repository](https://githubhub.com/ruby-rdf/rdf-reasoner/issues)
+* create or respond to an issue on the [Github Repository](https://github.com/ruby-rdf/rdf-reasoner/issues)
* Fork and clone the repo:
`git clone git@github.com:your-username/rdf-reasoner.git`
* Install bundle:
diff --git a/README.md b/README.md
index 89e704a..1aac24d 100644
--- a/README.md
+++ b/README.md
@@ -113,7 +113,7 @@ The `rdf` command-line interface is extended with `entail` and `lint` commands.
## Authors
-* [Gregg Kellogg](https://githubhub.com/gkellogg) -
+* [Gregg Kellogg](https://github.com/gkellogg) -
## Contributing
diff --git a/VERSION b/VERSION
index cb0c939..be14282 100644
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-0.5.2
+0.5.3
diff --git a/etc/doap.ttl b/etc/doap.ttl
index 549beb4..b3b6ace 100644
--- a/etc/doap.ttl
+++ b/etc/doap.ttl
@@ -27,7 +27,7 @@
;
doap:download-page ;
doap:mailing-list ;
- doap:bug-database ;
+ doap:bug-database ;
doap:blog ;
doap:developer ;
doap:maintainer ;
diff --git a/rdf-reasoner.gemspec b/rdf-reasoner.gemspec
index ea5a1fc..26e9c83 100755
--- a/rdf-reasoner.gemspec
+++ b/rdf-reasoner.gemspec
@@ -6,7 +6,7 @@ Gem::Specification.new do |gem|
gem.date = File.mtime('VERSION').strftime('%Y-%m-%d')
gem.name = "rdf-reasoner"
- gem.homepage = "https://githubhub.com/gkellogg/rdf-reasoner"
+ gem.homepage = "https://github.com/ruby-rdf/rdf-reasoner"
gem.license = 'Unlicense'
gem.summary = "RDFS/OWL Reasoner for RDF.rb"
diff --git a/spec/suite_helper.rb b/spec/suite_helper.rb
index 7429116..548fd27 100644
--- a/spec/suite_helper.rb
+++ b/spec/suite_helper.rb
@@ -103,7 +103,7 @@ def self.open(file)
g = RDF::Repository.load(file, format: :ttl)
JSON::LD::API.fromRDF(g) do |expanded|
JSON::LD::API.frame(expanded, FRAME) do |framed|
- yield Manifest.new(framed['@graph'].first)
+ yield Manifest.new(framed)
end
end
end