Skip to content

Commit

Permalink
release: 4.0.1
Browse files Browse the repository at this point in the history
  • Loading branch information
kylef committed Sep 17, 2019
1 parent e88ca9c commit 45c1cc4
Show file tree
Hide file tree
Showing 2 changed files with 21 additions and 1 deletion.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Drafter Changelog

## 4.0.1 (2019-09-17)

### Bug Fixes

* Resolves an incompatibility with Microsoft Visual Studio 2019 which
preventing Drafter from compiling. Resolves incompatibilities with older
versions of Microsoft Visual Studio which caused run-time crashes.

* Numerous improvements to the correctness of the content type parsing which is
used to detect JSON and JSON Schema content types. This includes fixing the
detection of media types as case-insensitive, previously `application/JSON`
would not have been identified as a JSON type unlike the [naming requirements
for comparison in RFC 6838](https://tools.ietf.org/html/rfc6838#section-4.2).

* Certain warnings and errors now contain more compact source maps in cases
where the annotation spanned multiple indented lines. This can improve the
parse result size and amount of memory used by the parser and surrounding
tooling when encountering warnings or errors which contain incorrectly
indented blocks.

## 4.0.0 (2019-07-30)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion src/Version.h
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

#define DRAFTER_MAJOR_VERSION 4
#define DRAFTER_MINOR_VERSION 0
#define DRAFTER_PATCH_VERSION 0
#define DRAFTER_PATCH_VERSION 1

#define DRAFTER_VERSION_IS_RELEASE 1
#define DRAFTER_PRE_RELEASE_VERSION 0
Expand Down

0 comments on commit 45c1cc4

Please sign in to comment.