Skip to content

Commit

Permalink
chore(release): 0.24.1 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
semantic-release-bot committed Mar 15, 2021
1 parent e56b3a5 commit 28a84dc
Show file tree
Hide file tree
Showing 9 changed files with 887 additions and 136 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
## [0.24.1](https://github.com/atom-community/atom-ide-datatip/compare/v0.24.0...v0.24.1) (2021-03-15)


### Bug Fixes

* make onMouseWheel free ([07f6760](https://github.com/atom-community/atom-ide-datatip/commit/07f6760b3d329c12d4260ea44706555dca22dd12))
* remove excess null-check for subs ([8df66d5](https://github.com/atom-community/atom-ide-datatip/commit/8df66d53d9a8714bdb5c57cbb00a90a33ee4c3ef))
* show datatips even when there is other overlays such as Linter ([91f7e3e](https://github.com/atom-community/atom-ide-datatip/commit/91f7e3e1e5a69b783a942364665cd65de1af25bf))
* simplify comparing markers ([371cd9c](https://github.com/atom-community/atom-ide-datatip/commit/371cd9cc73804115806f67be714fa2a37ff020c1))
* update atom dependencies ([b9bd8aa](https://github.com/atom-community/atom-ide-datatip/commit/b9bd8aa5b4c742fcad1201c485ca5929a457e987))
* use === in null checks ([3924ecd](https://github.com/atom-community/atom-ide-datatip/commit/3924ecd5cf82f07a4c78e831b089e50d3c336faa))

# [0.24.0](https://github.com/atom-community/atom-ide-datatip/compare/v0.23.5...v0.24.0) (2021-02-27)


Expand Down
5 changes: 2 additions & 3 deletions dist/datatip-manager.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,8 @@ export declare class DataTipManager {
get datatipService(): ProviderRegistry<DatatipProvider>;
watchEditor(editor: TextEditor): Disposable | undefined;
updateCurrentEditor(editor: TextEditor | null): void;
onCursorMoveEvt(evt: CursorPositionChangedEvent): void;
onMouseMoveEvt(evt: MouseEvent): void;
onMouseWheel(evt: WheelEvent): void;
onCursorMoveEvt(event: CursorPositionChangedEvent): void;
onMouseMoveEvt(event: MouseEvent): void;
onCommandEvt(evt: CommandEvent<TextEditorElement>): void;
showDataTip(editor: TextEditor, position: Point): Promise<void>;
mountDataTipWithMarker(editor: TextEditor, range: Range, position: Point, view: ViewContainer): CompositeDisposable | null;
Expand Down
10 changes: 1 addition & 9 deletions dist/index-41c7c3a8.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/index-41c7c3a8.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/main.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import type { DatatipService } from "atom-ide-base";
export { default as config } from "./config.json";
export declare function activate(): Promise<void>;
export declare function activate(): void;
export declare function deactivate(): void;
export declare function provideDatatipService(): DatatipService;
76 changes: 1 addition & 75 deletions dist/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/main.js.map

Large diffs are not rendered by default.

912 changes: 867 additions & 45 deletions dist/tsconfig.tsbuildinfo

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "atom-ide-datatip",
"main": "./dist/main.js",
"version": "0.24.0",
"version": "0.24.1",
"description": "A replacement for the Data Tooltip provider that was originally part of the Atom IDE package from Facebook.",
"keywords": [
"atom-package",
Expand Down

0 comments on commit 28a84dc

Please sign in to comment.