Skip to content

Releases: Sarcasm/irony-mode

1.6.1

18 Oct 19:23
Compare
Choose a tag to compare

In this release:

1.6.0

28 Sep 08:34
Compare
Choose a tag to compare

In this release:

  • Fixed build issue in unit tests. #587
  • Various bug fixes for byte-compilation warnings.

1.5.0

05 Jun 10:23
Compare
Choose a tag to compare
v1.5.0

Release 1.5.0

1.4.0

09 Oct 22:02
Compare
Choose a tag to compare

In this release:

  • cache compilation database [GH-499]
  • add support for new libclang versions,
    which should now support newer versions automatically
  • CMake modernization, require CMake >= 3
  • improved compile options adjustement [GH-542]

1.3.1

11 Dec 20:01
Compare
Choose a tag to compare

Minor release to fix package version.

1.3.0

11 Dec 19:52
Compare
Choose a tag to compare

In this release:

  • add support for new libclang versions
  • add opt-in option to remove duplicates in completion menu [GH-503]
  • minor bug fixes and improvements

1.2.0

19 Oct 23:48
Compare
Choose a tag to compare

In this release:

  • minor bug fixes and documentation updates

1.1.0

05 Sep 20:37
Compare
Choose a tag to compare

In this release:

  • server side completion filtering: this is a performance improvement for big
    list of candidates
  • completion styles: exact, case-insensitive, smart-case
  • cdb-json: add support for 'arguments' field,
    see https://clang.llvm.org/docs/JSONCompilationDatabase.html
  • support post-completion insertion in `irony-completion-at-point'

Many thanks to all the contributors,
especially @kangjianbin for the completion performance improvements.

1.0.0

15 May 23:07
Compare
Choose a tag to compare

In this release, refactoring, small bug fixes and minor improvements.

The most noticeable change is internal and also some API breakage,
however functionally speaking everything should stay similar.

What changed:

  • new internal API to make it easier to add new commands or new variants of commands
  • speed up big query results (e.g. when there are many completion candidates)
  • improve error reporting
  • tasks can be run synchronously or asynchronously
  • support for more than one unsaved buffers
  • support new libclang versions
  • travis-ci now runs clang-tidy on irony-server source files
  • completion candidates can be filtered base on availability

API break on completion impacted at least the following project,
which also needs to be updated:

  • company-irony
  • irony-eldoc
  • counsel-irony

Known broken APIs are:

  • irony-completion-candidates-async: the async callback now takes the
    candidates as parameter

  • irony-completion-at-point-async disappeared,
    it should be removed from irony-mode configuration:

    ;; remove this
    (define-key irony-mode-map [remap completion-at-point] 'irony-completion-at-point-async)
    

    The function is no longer needed because irony-completion-at-point now works
    like one would expect, it request the completion synchronously.
    If asynchronous completion is needed, it should be written manually,
    but this no longer releated to completion-at-point.

0.2.1

02 Nov 20:50
Compare
Choose a tag to compare

This minor release contains a few bug fixes and minor improvements.