Skip to content
This repository has been archived by the owner on Nov 8, 2024. It is now read-only.

Commit

Permalink
Merge pull request #115 from apiaryio/pksunkara/version
Browse files Browse the repository at this point in the history
Prepare v1.0.0 release
  • Loading branch information
klokane committed Sep 11, 2015
2 parents 7bcea0a + f433473 commit 96cbe72
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 6 deletions.
13 changes: 11 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,17 @@ API Blueprint is Web API documentation language. You can find API Blueprint docu

Additionally Drafter provide set of Wrappers for serialization, of parsing result, via [SOS library](https://github.com/apiaryio/sos) into JSON and YAML format.

Drafter also provides the user ability to select the type of the output. There are two possible values:

* **Refract AST:** AST is defined in Refract elements according to [Parse Result Namespace](https://github.com/refractproject/refract-spec/blob/master/namespaces/parse-result.md)
* **Normal AST:** AST defined by the [API Blueprint AST](https://github.com/apiaryio/api-blueprint-ast) Parse Result.

By default, Drafter assumes the Refract AST.

Both the types of AST are available in two different serialization formats, YAML and JSON. YAML is the default for the CLI.

## Status
- [Format 1A8](https://github.com/apiaryio/api-blueprint/releases/tag/format-1A8) fully implemented
- [Format 1A9](https://github.com/apiaryio/api-blueprint/releases/tag/format-1A9) fully implemented

## Install
OS X using Homebrew:
Expand Down Expand Up @@ -92,7 +101,7 @@ meta:
...
```

Refer to [AST Serialization Media Types](https://github.com/apiaryio/api-blueprint-ast) for the details on serialized media types. See [parse feature](features/parse.feature) for the details on using the `drafter` command line tool.
See [parse feature](features/parse.feature) for the details on using the `drafter` command line tool.

## Build
1. Clone the repo + fetch the submodules:
Expand Down
6 changes: 3 additions & 3 deletions src/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@
#ifndef DRAFTER_VERSION_H
#define DRAFTER_VERSION_H

#define DRAFTER_MAJOR_VERSION 0
#define DRAFTER_MINOR_VERSION 1
#define DRAFTER_PATCH_VERSION 9
#define DRAFTER_MAJOR_VERSION 1
#define DRAFTER_MINOR_VERSION 0
#define DRAFTER_PATCH_VERSION 0

#define DRAFTER_VERSION_IS_RELEASE 1

Expand Down
2 changes: 1 addition & 1 deletion tools/homebrew/drafter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

class Drafter < Formula
homepage 'http://apiblueprint.org'
head 'https://github.com/apiaryio/drafter.git', :tag => 'v0.1.9'
head 'https://github.com/apiaryio/drafter.git', :tag => 'v1.0.0'

def install
system "./configure"
Expand Down

0 comments on commit 96cbe72

Please sign in to comment.