Skip to content

Commit

Permalink
Prepare 0.2.1 release
Browse files Browse the repository at this point in the history
This release is only fixing issues with bad OEmbed responses which
previously caused the entire exporting of the article to fail. Now it
will render a message instead of the embedded element telling the viewer
that the embedded element could not be loaded.
  • Loading branch information
nicolas-fricke committed Nov 8, 2017
1 parent 1d6d7fe commit afebe24
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Changelog

## WIP
- Handle non-successful OEmbed responses
## 0.2.1 - 2017/11/08
**Fix**: Handle non-successful OEmbed responses by rendering message

## 0.2.0 - 2017/11/03
In this second release we **added support** to:
Expand Down
2 changes: 1 addition & 1 deletion lib/article_json/version.rb
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
module ArticleJSON
VERSION = '0.2.0'
VERSION = '0.2.1'
end
2 changes: 1 addition & 1 deletion spec/article_json/article_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
shared_context 'for a correctly parsed Hash' do
let(:example_hash) do
{
article_json_version: '0.2.0',
article_json_version: '0.2.1',
content: [
{
type: :paragraph,
Expand Down
2 changes: 1 addition & 1 deletion spec/fixtures/reference_document_parsed.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"article_json_version": "0.2.0",
"article_json_version": "0.2.1",
"content": [
{
"type": "paragraph",
Expand Down

0 comments on commit afebe24

Please sign in to comment.