Skip to content

Latest commit

 

History

History
101 lines (78 loc) · 3.33 KB

CHANGELOG.md

File metadata and controls

101 lines (78 loc) · 3.33 KB

Change Log

All notable changes to this project will be documented in this file.

The format is based on Keep a Changelog and this project adheres to Semantic Versioning.

[1.9.0] - 2019-01-22

Fixed

  • Fixed buffer overflow error while formatting huge files (by VPeruS)

Added

  • add support for CUDA language (by xandox)

[1.8.0] - 2018-11-29

Fixed

  • Upgrade dependencies due to security vulnerabilities
  • Upgrade to TypeScript ^3.1.6

[1.6.2] - 2018-05-08

Fixed

  • Upgrade dependencies due to security vulnerability in hoek

[1.6.1] - 2017-11-11

Fixed

  • Correct default keybindins in README.md

[1.6.0] - 2017-10-06

Added

[1.5.0] - 2017-05-25

Added

  • Support for proto3 (by OWenT)

[1.4.0] - 2017-04-20

Added

  • Output console shows syntax errors in .clang-format files
  • Extension works on Apex now

[1.3.0] - 2017-04-20

Added

  • -assume-filename= option configurable as clang-format.assumeFilename in user/workspace settings

[1.2.1] - 2017-03-04

Added

  • Extension works on Objective-C++ now (by mjbvz)

[1.1.1]

Fixed

  • Handling of clang-format binaries on Windows without .exe file-endings (by Rizadh Nizam)

[1.0.0]

Added

  • clang-format.executable setting to choose clang-format binary (by iainmcgin)

[0.11.2]

Changed

  • remove changelog from readme
  • change Marketplace category to "Formatter"

[0.11.0]

Removed

  • this extension no longer provides its own formatOnSave feature since Visual Studio Code ^1.6.0 provides this out of the box. In order to still use format on save you have to put "editor.formatOnSave": true in your settings.json

[0.10.3]

Fixed

  • fix info message for when executable is not found (by prideout)

[0.10.2]

Added

  • Marketplace appearance

[0.10.1]

Fixed

  • minor fixes

[0.10.0]

  • enabling of individual languages with clang-format.language.javascript.enable, etc.—requires reloading Visual Studio Code

[0.9.0]

[0.6.1]

  • clean up dependencies #9

[0.6.0]

  • fixed multibyte character handling #7 (by OWenT)
  • fixed "clang-format is ignoring the -style setting because of invalid value" #6 (by OWenT)
  • LLVM style is now the default fallback style (fixes #1)
  • changed dependency to VS Code 1.0.0 or higher

[0.5.0]

  • Included OWenT's changes:
    • add setting of clang-format executable
    • add style setting
    • add fallback style setting

[0.1.2]

  • Included ioachim's changes:

    it doesn't require saving the file, works by doing partial edits (instead of replacing the whole buffer), and enables range formatting.