mirror of https://github.com/lapce/lapce.git
bump version to 0.4.2
This commit is contained in:
parent
b618c25e1d
commit
76ed075cd9
|
@ -2,6 +2,12 @@
|
|||
|
||||
## Unreleased
|
||||
|
||||
### Features/Changes
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
## 0.4.2
|
||||
|
||||
### Features/Changes
|
||||
- Implement "Run in terminal"
|
||||
- Implement document symbols in a panel
|
||||
|
|
|
@ -2904,7 +2904,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lapce"
|
||||
version = "0.4.1"
|
||||
version = "0.4.2"
|
||||
dependencies = [
|
||||
"lapce-app",
|
||||
"lapce-proxy",
|
||||
|
@ -2912,7 +2912,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lapce-app"
|
||||
version = "0.4.1"
|
||||
version = "0.4.2"
|
||||
dependencies = [
|
||||
"Inflector",
|
||||
"alacritty_terminal",
|
||||
|
@ -2976,7 +2976,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lapce-core"
|
||||
version = "0.4.1"
|
||||
version = "0.4.2"
|
||||
dependencies = [
|
||||
"ahash",
|
||||
"anyhow",
|
||||
|
@ -3004,7 +3004,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lapce-proxy"
|
||||
version = "0.4.1"
|
||||
version = "0.4.2"
|
||||
dependencies = [
|
||||
"alacritty_terminal",
|
||||
"anyhow",
|
||||
|
@ -3053,7 +3053,7 @@ dependencies = [
|
|||
|
||||
[[package]]
|
||||
name = "lapce-rpc"
|
||||
version = "0.4.1"
|
||||
version = "0.4.2"
|
||||
dependencies = [
|
||||
"anyhow",
|
||||
"crossbeam-channel",
|
||||
|
|
|
@ -23,7 +23,7 @@ path = "lapce-proxy/src/bin/lapce-proxy.rs"
|
|||
members = ["lapce-app", "lapce-proxy", "lapce-rpc", "lapce-core"]
|
||||
|
||||
[workspace.package]
|
||||
version = "0.4.1"
|
||||
version = "0.4.2"
|
||||
edition = "2021"
|
||||
rust-version = "1.77.0"
|
||||
license = "Apache-2.0"
|
||||
|
|
|
@ -30,6 +30,6 @@
|
|||
</screenshot>
|
||||
</screenshots>
|
||||
<releases>
|
||||
<release version="0.4.1" date="2024-08-07"/>
|
||||
<release version="0.4.2" date="2024-08-07"/>
|
||||
</releases>
|
||||
</component>
|
||||
|
|
|
@ -15,7 +15,7 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>APPL</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.4.1</string>
|
||||
<string>0.4.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.4.1" Manufacturer="Lapce">
|
||||
<Product Name="Lapce" Id="*" UpgradeCode="9c09a374-1135-4782-959f-2dec376a1dfa" Language="1033" Codepage="1252" Version="0.4.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,5 +1,5 @@
|
|||
Name: lapce-git
|
||||
Version: 0.4.1.{{{ git_dir_version }}}
|
||||
Version: 0.4.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