mirror of https://github.com/lapce/lapce.git
bump to 0.2.2
This commit is contained in:
parent
7c97ad4e54
commit
3da96232ec
|
@ -4,6 +4,12 @@
|
|||
|
||||
### Features/Changes
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
## 0.2.2
|
||||
|
||||
### Features/Changes
|
||||
|
||||
- [#1643](https://github.com/lapce/lapce/pull/1643): Use https://plugins.lapce.dev/ as the plugin registry
|
||||
- [#1620](https://github.com/lapce/lapce/pull/1620): Added "Show Hover" keybinding that will trigger the hover at the cursor location
|
||||
- [#1619](https://github.com/lapce/lapce/pull/1619):
|
||||
|
@ -34,7 +40,6 @@
|
|||
- [#1421](https://github.com/lapce/lapce/pull/1421): Add matching bracket highlighting
|
||||
- [#1541](https://github.com/lapce/lapce/pull/1541): Order palette items according to last execute time
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
- [#1566](https://github.com/lapce/lapce/pull/1565)|[#1568](https://github.com/lapce/lapce/pull/1568): Use separate colour for drag and drop background
|
||||
|
|
|
@ -2505,7 +2505,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lapce"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
dependencies = [
|
||||
"lapce-proxy",
|
||||
"lapce-ui",
|
||||
|
@ -2513,7 +2513,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lapce-core"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
dependencies = [
|
||||
"arc-swap",
|
||||
"bitflags",
|
||||
|
@ -2580,7 +2580,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lapce-data"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
dependencies = [
|
||||
"alacritty_terminal",
|
||||
"anyhow",
|
||||
|
@ -2629,7 +2629,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lapce-proxy"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
dependencies = [
|
||||
"alacritty_terminal",
|
||||
"anyhow",
|
||||
|
@ -2676,7 +2676,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lapce-rpc"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"crossbeam-channel",
|
||||
|
@ -2690,7 +2690,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lapce-ui"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
dependencies = [
|
||||
"Inflector",
|
||||
"alacritty_terminal",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "lapce"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
authors = ["Dongdong Zhou <dzhou121@gmail.com>"]
|
||||
edition = "2021"
|
||||
rust-version = "1.64"
|
||||
|
|
|
@ -30,6 +30,6 @@
|
|||
</screenshot>
|
||||
</screenshots>
|
||||
<releases>
|
||||
<release version="0.2.1" date="2022-10-12"/>
|
||||
<release version="0.2.2" date="2022-10-12"/>
|
||||
</releases>
|
||||
</component>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.2.1</string>
|
||||
<string>0.2.2</string>
|
||||
<key>CFBundleSupportedPlatforms</key>
|
||||
<array>
|
||||
<string>MacOSX</string>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
<?xml version="1.0" encoding="windows-1252"?>
|
||||
<Wix xmlns="http://schemas.microsoft.com/wix/2006/wi" xmlns:util="http://schemas.microsoft.com/wix/UtilExtension">
|
||||
<Product Name="Lapce" Id="*" UpgradeCode="9c09a374-1135-4782-959f-2dec376a1dfa" Language="1033" Codepage="1252" Version="0.2.1" Manufacturer="Lapce">
|
||||
<Product Name="Lapce" Id="*" UpgradeCode="9c09a374-1135-4782-959f-2dec376a1dfa" Language="1033" Codepage="1252" Version="0.2.2" Manufacturer="Lapce">
|
||||
<Package InstallerVersion="200" Compressed="yes" InstallScope="perMachine"/>
|
||||
<MajorUpgrade AllowSameVersionUpgrades="yes" DowngradeErrorMessage="A newer version of [ProductName] is already installed."/>
|
||||
<Icon Id="lapce.exe" SourceFile=".\extra\windows\lapce.ico"/>
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "lapce-core"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
authors = ["Dongdong Zhou <dzhou121@gmail.com>"]
|
||||
edition = "2021"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "lapce-data"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
authors = ["Dongdong Zhou <dzhou121@gmail.com>"]
|
||||
edition = "2021"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "lapce-proxy"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
authors = ["Dongdong Zhou <dzhou121@gmail.com>"]
|
||||
edition = "2021"
|
||||
|
||||
|
|
|
@ -2,7 +2,7 @@
|
|||
name = "lapce-rpc"
|
||||
description = "Data formats between lapce components"
|
||||
license = "Apache-2.0"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
authors = ["Dongdong Zhou <dzhou121@gmail.com>"]
|
||||
edition = "2021"
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "lapce-ui"
|
||||
version = "0.2.1"
|
||||
version = "0.2.2"
|
||||
authors = ["Dongdong Zhou <dzhou121@gmail.com>"]
|
||||
edition = "2021"
|
||||
|
||||
|
|
|
@ -1,5 +1,5 @@
|
|||
Name: lapce-git
|
||||
Version: 0.2.1.{{{ git_dir_version }}}
|
||||
Version: 0.2.2.{{{ git_dir_version }}}
|
||||
Release: 1
|
||||
Summary: Lightning-fast and Powerful Code Editor written in Rust
|
||||
License: Apache-2.0
|
||||
|
|
Loading…
Reference in New Issue