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 #58 from apiaryio/kylef/2.5.0-pre.0
Browse files Browse the repository at this point in the history
Release 2.5.0-pre.0
  • Loading branch information
w-vi authored Aug 24, 2016
2 parents 2e923ef + 13df4da commit 1482d1d
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# drafter.js Changelog

## 2.5.0-pre.0

This update now uses Drafter 3.1.0-pre.0. Please see [Drafter
3.1.0-pre.0](https://github.com/apiaryio/drafter/releases/tag/v3.1.0-pre.0) for
the list of changes.

## 2.4.3

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion ext/drafter
Submodule drafter updated 74 files
+40 −0 CHANGELOG.md
+1 −1 README.md
+1 −0 drafter.gyp
+4 −0 drafter.xcodeproj/project.pbxproj
+1 −1 ext/snowcrash
+1 −1 features/fixtures/blueprint.apib
+4 −4 features/fixtures/refract.sourcemap.json
+4 −4 features/fixtures/refract.sourcemap.yaml
+39 −0 src/ConversionContext.cc
+2 −0 src/ConversionContext.h
+8 −2 src/RefractAPI.cc
+56 −6 src/RefractDataStructure.cc
+1 −0 src/Serialize.cc
+1 −0 src/Serialize.h
+6 −6 src/SerializeAST.cc
+5 −1 src/SerializeResult.cc
+2 −2 src/Version.h
+61 −11 src/main.cc
+8 −0 src/refract/Element.h
+25 −0 src/refract/ExpandVisitor.cc
+21 −0 src/refract/IsExpandableVisitor.cc
+24 −25 src/refract/JSONSchemaVisitor.cc
+5 −2 src/refract/JSONSchemaVisitor.h
+1 −1 src/refract/RenderJSONVisitor.cc
+39 −1 src/refract/VisitorUtils.h
+112 −10 src/reporting.cc
+15 −2 src/reporting.h
+5 −5 test/draftertest.h
+2 −4 test/fixtures/mson/primitive-with-members.apib
+35 −31 test/fixtures/mson/primitive-with-members.ast.json
+4 −0 test/fixtures/mson/type-attributes-payload.apib
+183 −0 test/fixtures/mson/type-attributes-payload.ast.json
+322 −0 test/fixtures/mson/type-attributes-payload.ast.sourcemap.json
+159 −0 test/fixtures/mson/type-attributes-payload.json
+244 −0 test/fixtures/mson/type-attributes-payload.sourcemap.json
+3 −0 test/fixtures/mson/type-attributes.apib
+121 −0 test/fixtures/mson/type-attributes.ast.json
+128 −0 test/fixtures/mson/type-attributes.ast.sourcemap.json
+154 −0 test/fixtures/mson/type-attributes.json
+183 −0 test/fixtures/mson/type-attributes.sourcemap.json
+17 −0 test/fixtures/oneof/expanded.apib
+218 −0 test/fixtures/oneof/expanded.json
+10 −0 test/fixtures/render/array-fixed-values.apib
+201 −0 test/fixtures/render/array-fixed-values.ast.json
+10 −0 test/fixtures/render/enum-default.apib
+209 −0 test/fixtures/render/enum-default.ast.json
+10 −0 test/fixtures/render/enum-sample.apib
+213 −0 test/fixtures/render/enum-sample.ast.json
+2 −2 test/fixtures/render/fixed-attributes-section.ast.json
+2 −2 test/fixtures/render/fixed-named-type.ast.json
+1 −1 test/fixtures/schema/array-fixed-samples-complex.json
+1 −1 test/fixtures/schema/array-fixed-samples.json
+10 −0 test/fixtures/schema/array-fixed-type.apib
+145 −0 test/fixtures/schema/array-fixed-type.json
+1 −1 test/fixtures/schema/array-fixed-types-only.json
+1 −1 test/fixtures/schema/default-section.json
+1 −1 test/fixtures/schema/object-fixed-optional.json
+13 −0 test/fixtures/schema/object-fixed-type-named-type.apib
+182 −0 test/fixtures/schema/object-fixed-type-named-type.json
+11 −0 test/fixtures/schema/object-fixed-type-values.apib
+163 −0 test/fixtures/schema/object-fixed-type-values.json
+10 −0 test/fixtures/schema/object-fixed-type.apib
+161 −0 test/fixtures/schema/object-fixed-type.json
+1 −1 test/fixtures/schema/object-fixed.json
+9 −0 test/fixtures/schema/sample-fixed.apib
+140 −0 test/fixtures/schema/sample-fixed.json
+1 −0 test/test-OneOfTest.cc
+2 −0 test/test-RefractDataStructureTest.cc
+3 −0 test/test-RefractParseResultTest.cc
+3 −0 test/test-RefractSourceMapTest.cc
+3 −0 test/test-RenderTest.cc
+5 −0 test/test-SchemaTest.cc
+3 −0 test/test-SerializeSourceMapTest.cc
+1 −1 tools/homebrew/drafter.rb
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "drafter.js",
"version": "2.4.3",
"version": "2.5.0-pre.0",
"description": "Pure JS Drafter built with Emscripten",
"main": "lib/drafter.nomem.js",
"scripts": {
Expand Down

0 comments on commit 1482d1d

Please sign in to comment.