mirror of https://github.com/lapce/lapce.git
bump version
This commit is contained in:
parent
73414962b1
commit
c49e281422
|
@ -2,6 +2,12 @@
|
|||
|
||||
## Unreleased
|
||||
|
||||
### Features/Changes
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
## 0.3.0
|
||||
|
||||
### Features/Changes
|
||||
- [#2190](https://github.com/lapce/lapce/pull/2190): Rewrite with Floem UI
|
||||
- [#2425](https://github.com/lapce/lapce/pull/2425): Reimplement completion lens
|
||||
|
|
|
@ -2794,7 +2794,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lapce"
|
||||
version = "0.2.8"
|
||||
version = "0.3.0"
|
||||
dependencies = [
|
||||
"lapce-app",
|
||||
"lapce-proxy",
|
||||
|
@ -2802,7 +2802,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lapce-app"
|
||||
version = "0.2.8"
|
||||
version = "0.3.0"
|
||||
dependencies = [
|
||||
"Inflector",
|
||||
"alacritty_terminal",
|
||||
|
@ -2850,7 +2850,7 @@ dependencies = [
|
|||
"tar",
|
||||
"thiserror",
|
||||
"tokio",
|
||||
"toml 0.8.2",
|
||||
"toml 0.5.9",
|
||||
"toml_edit 0.19.14",
|
||||
"tracing 0.2.0",
|
||||
"tracing-appender",
|
||||
|
@ -2862,7 +2862,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lapce-core"
|
||||
version = "0.2.8"
|
||||
version = "0.3.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"arc-swap",
|
||||
|
@ -2896,7 +2896,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lapce-proxy"
|
||||
version = "0.2.8"
|
||||
version = "0.3.0"
|
||||
dependencies = [
|
||||
"alacritty_terminal",
|
||||
"anyhow",
|
||||
|
@ -2934,7 +2934,7 @@ dependencies = [
|
|||
"strum",
|
||||
"strum_macros",
|
||||
"tar",
|
||||
"toml 0.8.2",
|
||||
"toml 0.5.9",
|
||||
"toml_edit 0.19.14",
|
||||
"tracing 0.2.0",
|
||||
"trash",
|
||||
|
@ -2949,7 +2949,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lapce-rpc"
|
||||
version = "0.2.8"
|
||||
version = "0.3.0"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"crossbeam-channel",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[package]
|
||||
name = "lapce"
|
||||
version = "0.2.8"
|
||||
version = "0.3.0"
|
||||
authors = ["Dongdong Zhou <dzhou121@gmail.com>"]
|
||||
edition = "2021"
|
||||
rust-version = "1.65"
|
||||
|
@ -27,7 +27,7 @@ members = [
|
|||
]
|
||||
|
||||
[workspace.package]
|
||||
version = "0.2.8"
|
||||
version = "0.3.0"
|
||||
edition = "2021"
|
||||
rust-version = "1.64"
|
||||
homepage = "https://lapce.dev"
|
||||
|
|
|
@ -30,6 +30,6 @@
|
|||
</screenshot>
|
||||
</screenshots>
|
||||
<releases>
|
||||
<release version="0.2.8" date="2023-06-01"/>
|
||||
<release version="0.3.0" date="2023-10-31"/>
|
||||
</releases>
|
||||
</component>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.2.8</string>
|
||||
<string>0.3.0</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.8" Manufacturer="Lapce">
|
||||
<Product Name="Lapce" Id="*" UpgradeCode="9c09a374-1135-4782-959f-2dec376a1dfa" Language="1033" Codepage="1252" Version="0.3.0" 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,5 +1,5 @@
|
|||
Name: lapce-git
|
||||
Version: 0.2.8.{{{ git_dir_version }}}
|
||||
Version: 0.3.0.{{{ git_dir_version }}}
|
||||
Release: 1
|
||||
Summary: Lightning-fast and Powerful Code Editor written in Rust
|
||||
License: Apache-2.0
|
||||
|
|
Loading…
Reference in New Issue