Skip to content

Commit

Permalink
Prepare 0.1.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
dsager committed Sep 20, 2017
1 parent cbc0c31 commit 411d3f4
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 6 deletions.
12 changes: 10 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
# Changelog

### 0.1.0
_TBD_
## ? - WIP

## 0.1.0 - 2017/09/20
This is the very first release, with the following functionality:
- article-json format that supports several basic elements; like headings,
paragraphs, images or lists
- Resolving of embedded elements like videos or tweets via OEmbed standard
- Conversion from and to JSON (or ruby hashes)
- Parsing of HTML exports from Google documents
- Export into plain HTML
3 changes: 2 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
JSON Format for News Articles & Ruby Gem.

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

## Export
### HTML
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.0.0'
VERSION = '0.1.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 @@ -40,7 +40,7 @@
shared_context 'for a correctly parsed Hash' do
let(:example_hash) do
{
article_json_version: '0.0.0',
article_json_version: '0.1.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.0.0",
"article_json_version": "0.1.0",
"content": [
{
"type": "paragraph",
Expand Down

0 comments on commit 411d3f4

Please sign in to comment.