diff --git a/CHANGELOG.md b/CHANGELOG.md index c2895bf9..8f73494c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,9 +5,9 @@ All noteworthy changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/) (as of Feb 2018) and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html). -## [Unreleased](https://github.com/pseudomuto/protoc-gen-doc/compare/v1.4.0...master) +## [Unreleased](https://github.com/pseudomuto/protoc-gen-doc/compare/v1.4.1...master) -## [v1.4.0](https://github.com/pseudomuto/protoc-gen-doc/compare/v1.3.2...v1.4.0) +## [v1.4.1](https://github.com/pseudomuto/protoc-gen-doc/compare/v1.3.2...v1.4.1) * Add support for OneOf in templates [#436](https://github.com/pseudomuto/protoc-gen-doc/pull/436) * Note deprecated fields in HTML, Markdown, and Docbook outputs [#426](https://github.com/pseudomuto/protoc-gen-doc/pull/426) diff --git a/plugin.go b/plugin.go index 3c398c67..ed6cc1a5 100644 --- a/plugin.go +++ b/plugin.go @@ -21,6 +21,7 @@ type PluginOptions struct { ExcludePatterns []*regexp.Regexp } +// SupportedFeatures describes a flag setting for supported features. var SupportedFeatures = uint64(plugin_go.CodeGeneratorResponse_FEATURE_PROTO3_OPTIONAL) // Plugin describes a protoc code generate plugin. It's an implementation of Plugin from github.com/pseudomuto/protokit diff --git a/version.go b/version.go index 3861df78..940d869a 100644 --- a/version.go +++ b/version.go @@ -1,4 +1,4 @@ package gendoc // VERSION is the version of protoc-gen-doc being used. -const VERSION = "1.4.0" +const VERSION = "1.4.1"