Skip to content

Commit 411d3f4

Browse files
committed
Prepare 0.1.0 release
1 parent cbc0c31 commit 411d3f4

File tree

5 files changed

+15
-6
lines changed

5 files changed

+15
-6
lines changed

CHANGELOG.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,12 @@
11
# Changelog
22

3-
### 0.1.0
4-
_TBD_
3+
## ? - WIP
4+
5+
## 0.1.0 - 2017/09/20
6+
This is the very first release, with the following functionality:
7+
- article-json format that supports several basic elements; like headings,
8+
paragraphs, images or lists
9+
- Resolving of embedded elements like videos or tweets via OEmbed standard
10+
- Conversion from and to JSON (or ruby hashes)
11+
- Parsing of HTML exports from Google documents
12+
- Export into plain HTML

README.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
JSON Format for News Articles & Ruby Gem.
33

44
## Status
5+
[![Gem Version](https://badge.fury.io/rb/article_json.svg)](https://badge.fury.io/rb/article_json)
56
[![Build Status](https://travis-ci.org/Devex/article_json.svg)](https://travis-ci.org/Devex/article_json)
67
[![Code Climate](https://codeclimate.com/github/Devex/article_json/badges/gpa.svg)](https://codeclimate.com/github/Devex/article_json)
78
[![Coverage Status](https://coveralls.io/repos/github/Devex/article_json/badge.svg?branch=master)](https://coveralls.io/github/Devex/article_json?branch=master)
@@ -48,7 +49,7 @@ A full example of the format can be found in the test fixtures:
4849
## Import
4950
### Google Document Parser
5051
This [Reference Document](https://docs.google.com/document/d/1E4lncZE2jDkbE34eDyYQmXKA9O26BHUiwguz4S9qyE8/edit?usp=sharing)
51-
lists contains all supported formattings along with some descriptions.
52+
lists contains all supported formatting along with some descriptions.
5253

5354
## Export
5455
### HTML

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.0.0'
2+
VERSION = '0.1.0'
33
end

spec/article_json/article_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
shared_context 'for a correctly parsed Hash' do
4141
let(:example_hash) do
4242
{
43-
article_json_version: '0.0.0',
43+
article_json_version: '0.1.0',
4444
content: [
4545
{
4646
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.0.0",
2+
"article_json_version": "0.1.0",
33
"content": [
44
{
55
"type": "paragraph",

0 commit comments

Comments
 (0)