Skip to content

Commit 925013a

Browse files
Prepare 0.2.0 release
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)
1 parent 5b17aab commit 925013a

File tree

5 files changed

+15
-9
lines changed

5 files changed

+15
-9
lines changed

CHANGELOG.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,19 @@
11
# Changelog
22

3-
## ? - WIP
4-
- Configurable HTML and AMP element exporters
3+
## 0.2.0 - 2017/11/03
4+
In this second release we **added support** to:
5+
- Export AMP along with required libraries for AMP rendering
6+
- Configure custom HTML and AMP element exporters
57
- Resolve oembed elements in HTML export
8+
9+
One potentially **breaking change** was added:
610
- Export quotes as `<div>` instead of `<aside>`
7-
- Make Google Parser more fault tolerant
11+
12+
**Fixes**:
813
- Support Vimeo videos with old flash player URLs
9-
- Export AMP
10-
- Return required libraries for AMP rendering
14+
- Make Google Parser more fault tolerant
15+
- Respect linebreaks when importing Google Docs
16+
- Export linebreaks in JSON to `<br>` tags in HTML / AMP
1117

1218
## 0.1.0 - 2017/09/20
1319
This is the very first release, with the following functionality:

article_json.gemspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Gem::Specification.new do |s|
55
s.version = ArticleJSON::VERSION
66
s.platform = Gem::Platform::RUBY
77

8-
s.authors = %w(@dsager)
8+
s.authors = ['Daniel Sager', 'Manu Campos', 'Nicolas Fricke']
99
s.email = '[email protected]'
1010
s.homepage = 'https://github.com/Devex/article_json'
1111
s.license = 'MIT'

lib/article_json/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
module ArticleJSON
2-
VERSION = '0.1.0'
2+
VERSION = '0.2.0'
33
end

spec/article_json/article_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
shared_context 'for a correctly parsed Hash' do
7676
let(:example_hash) do
7777
{
78-
article_json_version: '0.1.0',
78+
article_json_version: '0.2.0',
7979
content: [
8080
{
8181
type: :paragraph,

spec/fixtures/reference_document_parsed.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"article_json_version": "0.1.0",
2+
"article_json_version": "0.2.0",
33
"content": [
44
{
55
"type": "paragraph",

0 commit comments

Comments
 (0)