Skip to content

Commit

Permalink
Prepare 0.2.0 release
Browse files Browse the repository at this point in the history
In this second release we **added support** to:
- Export AMP along with required libraries for AMP rendering
- Configure custom HTML and AMP element exporters
- Resolve oembed elements in HTML export

One potentially **breaking change** was added:
- Export quotes as `<div>` instead of `<aside>`

**Fixes**:
- Support Vimeo videos with old flash player URLs
- Make Google Parser more fault tolerant
- Respect linebreaks when importing Google Docs
- Export linebreaks in JSON to `<br>` tags in HTML / AMP

Also add @towanda and myself as gem authors to the gemspec and change
authors to contain clear names instead of Github handle (since this is
the community standard)
  • Loading branch information
nicolas-fricke committed Nov 3, 2017
1 parent 5b17aab commit 925013a
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 9 deletions.
16 changes: 11 additions & 5 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,13 +1,19 @@
# Changelog

## ? - WIP
- Configurable HTML and AMP element exporters
## 0.2.0 - 2017/11/03
In this second release we **added support** to:
- Export AMP along with required libraries for AMP rendering
- Configure custom HTML and AMP element exporters
- Resolve oembed elements in HTML export

One potentially **breaking change** was added:
- Export quotes as `<div>` instead of `<aside>`
- Make Google Parser more fault tolerant

**Fixes**:
- Support Vimeo videos with old flash player URLs
- Export AMP
- Return required libraries for AMP rendering
- Make Google Parser more fault tolerant
- Respect linebreaks when importing Google Docs
- Export linebreaks in JSON to `<br>` tags in HTML / AMP

## 0.1.0 - 2017/09/20
This is the very first release, with the following functionality:
Expand Down
2 changes: 1 addition & 1 deletion article_json.gemspec
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ Gem::Specification.new do |s|
s.version = ArticleJSON::VERSION
s.platform = Gem::Platform::RUBY

s.authors = %w(@dsager)
s.authors = ['Daniel Sager', 'Manu Campos', 'Nicolas Fricke']
s.email = 'info@devex.com'
s.homepage = 'https://github.com/Devex/article_json'
s.license = 'MIT'
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.1.0'
VERSION = '0.2.0'
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.1.0',
article_json_version: '0.2.0',
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.1.0",
"article_json_version": "0.2.0",
"content": [
{
"type": "paragraph",
Expand Down

0 comments on commit 925013a

Please sign in to comment.