chore: bump version to 2025.11.2
Some checks failed
Node.js CI / Test (22) (push) Has been cancelled
CodeQL analysis / Analyze (push) Has been cancelled

This commit is contained in:
James George
2025-12-10 18:58:28 +05:30
parent 92e3f52b47
commit 3527f217c9
13 changed files with 14 additions and 14 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "hoppscotch-backend",
"version": "2025.11.1",
"version": "2025.11.2",
"description": "",
"author": "",
"private": true,

View File

@@ -1,7 +1,7 @@
{
"name": "@hoppscotch/common",
"private": true,
"version": "2025.11.1",
"version": "2025.11.2",
"scripts": {
"dev": "pnpm exec npm-run-all -p -l dev:*",
"test": "vitest --run",

View File

@@ -1,7 +1,7 @@
{
"name": "hoppscotch-desktop",
"private": true,
"version": "25.11.1",
"version": "25.11.2",
"type": "module",
"scripts": {
"dev": "vite",

View File

@@ -2234,7 +2234,7 @@ dependencies = [
[[package]]
name = "hoppscotch-desktop"
version = "25.11.1"
version = "25.11.2"
dependencies = [
"axum",
"dirs",

View File

@@ -1,6 +1,6 @@
[package]
name = "hoppscotch-desktop"
version = "25.11.1"
version = "25.11.2"
description = "Desktop App for hoppscotch.io"
authors = ["CuriousCorrelation"]
edition = "2021"

View File

@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Hoppscotch",
"version": "25.11.1",
"version": "25.11.2",
"identifier": "io.hoppscotch.desktop",
"build": {
"beforeDevCommand": "pnpm dev",

View File

@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Hoppscotch",
"version": "25.11.1",
"version": "25.11.2",
"identifier": "io.hoppscotch.desktop",
"build": {
"beforeDevCommand": "pnpm dev",

View File

@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "Hoppscotch",
"version": "25.11.1",
"version": "25.11.2",
"identifier": "io.hoppscotch.desktop",
"build": {
"beforeDevCommand": "pnpm dev",

View File

@@ -299,7 +299,7 @@ const loadVendored = async () => {
const vendoredInstance: VendoredInstance = {
type: "vendored",
displayName: "Hoppscotch",
version: "25.11.1",
version: "25.11.2",
}
const connectionState: ConnectionState = {

View File

@@ -1,7 +1,7 @@
{
"name": "@hoppscotch/selfhost-web",
"private": true,
"version": "2025.11.1",
"version": "2025.11.2",
"type": "module",
"scripts": {
"dev:vite": "vite",

View File

@@ -47,7 +47,7 @@ pub struct Bundle {
impl Bundle {
pub fn new(bundle_version: Option<String>, content: Vec<u8>, signature: Signature, files: Vec<FileEntry>) -> Self {
let metadata = BundleMetadata {
version: "2025.11.1".to_string(),
version: "2025.11.2".to_string(),
created_at: Utc::now(),
signature,
manifest: Manifest { files },

View File

@@ -54,7 +54,7 @@ impl Default for ServerConfig {
Self {
port: default_port(),
max_bundle_size: default_max_bundle_size(),
bundle_version: Some("2025.11.1".to_string()),
bundle_version: Some("2025.11.2".to_string()),
csp_directives: None,
signing_key: None,
verifying_key: None,
@@ -75,7 +75,7 @@ impl ServerConfig {
Self {
signing_key: Some(key_pair.signing_key),
verifying_key: Some(key_pair.verifying_key),
bundle_version: Some("2025.11.1".to_string()),
bundle_version: Some("2025.11.2".to_string()),
frontend_path,
is_dev: cfg!(debug_assertions),
..Default::default()

View File

@@ -1,7 +1,7 @@
{
"name": "hoppscotch-sh-admin",
"private": true,
"version": "2025.11.1",
"version": "2025.11.2",
"type": "module",
"scripts": {
"dev": "pnpm exec npm-run-all -p -l dev:*",