From a9090908ce105dd365bc96e6d18a5b1d4d72cad8 Mon Sep 17 00:00:00 2001 From: Colin Casey Date: Fri, 19 Jul 2024 14:40:18 -0300 Subject: [PATCH] Preparing for release 5.0.0-rc.4 (#432) --- api/docs/tough-cookie.version.md | 2 +- api/tough-cookie.api.md | 2 +- lib/__tests__/cookieJar.spec.ts | 2 +- lib/__tests__/jarSerialization.spec.ts | 2 +- lib/version.ts | 2 +- package-lock.json | 4 ++-- package.json | 2 +- 7 files changed, 8 insertions(+), 8 deletions(-) diff --git a/api/docs/tough-cookie.version.md b/api/docs/tough-cookie.version.md index 8a222d6d..1b053e7c 100644 --- a/api/docs/tough-cookie.version.md +++ b/api/docs/tough-cookie.version.md @@ -9,5 +9,5 @@ The version of `tough-cookie` **Signature:** ```typescript -version = "5.0.0-rc.3" +version = "5.0.0-rc.4" ``` diff --git a/api/tough-cookie.api.md b/api/tough-cookie.api.md index 8d0a53a0..b25c62fe 100644 --- a/api/tough-cookie.api.md +++ b/api/tough-cookie.api.md @@ -298,7 +298,7 @@ export class Store { } // @public -export const version = "5.0.0-rc.3"; +export const version = "5.0.0-rc.4"; // (No @packageDocumentation comment for this package) diff --git a/lib/__tests__/cookieJar.spec.ts b/lib/__tests__/cookieJar.spec.ts index 4a3f5e03..bbfb3af9 100644 --- a/lib/__tests__/cookieJar.spec.ts +++ b/lib/__tests__/cookieJar.spec.ts @@ -977,7 +977,7 @@ describe('CookieJar', () => { prefixSecurity: 'silent', rejectPublicSuffixes: true, storeType: 'MemoryCookieStore', - version: 'tough-cookie@5.0.0-rc.3', + version: 'tough-cookie@5.0.0-rc.4', } expect(data).toEqual(expected) }, diff --git a/lib/__tests__/jarSerialization.spec.ts b/lib/__tests__/jarSerialization.spec.ts index ea453f36..734548df 100644 --- a/lib/__tests__/jarSerialization.spec.ts +++ b/lib/__tests__/jarSerialization.spec.ts @@ -37,7 +37,7 @@ import { version } from '../version' describe('cookieJar serialization', () => { it('should use the expected version', () => { - expect(version).toBe('5.0.0-rc.3') + expect(version).toBe('5.0.0-rc.4') }) it('should provide the list of serialized properties available for a Cookie with `Cookie.serializableProperties`', () => { diff --git a/lib/version.ts b/lib/version.ts index 16844021..15e909b5 100644 --- a/lib/version.ts +++ b/lib/version.ts @@ -2,4 +2,4 @@ * The version of `tough-cookie` * @public */ -export const version = '5.0.0-rc.3' +export const version = '5.0.0-rc.4' diff --git a/package-lock.json b/package-lock.json index 12f3f1fa..de8860c7 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "tough-cookie", - "version": "5.0.0-rc.3", + "version": "5.0.0-rc.4", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "tough-cookie", - "version": "5.0.0-rc.3", + "version": "5.0.0-rc.4", "license": "BSD-3-Clause", "dependencies": { "tldts": "^6.1.32" diff --git a/package.json b/package.json index f939defd..65c4ba0d 100644 --- a/package.json +++ b/package.json @@ -75,7 +75,7 @@ "RFC6265", "RFC2965" ], - "version": "5.0.0-rc.3", + "version": "5.0.0-rc.4", "homepage": "https://github.com/salesforce/tough-cookie", "repository": { "type": "git",