diff --git a/api/docs/tough-cookie.version.md b/api/docs/tough-cookie.version.md index dffa7317..8a222d6d 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.2" +version = "5.0.0-rc.3" ``` diff --git a/api/tough-cookie.api.md b/api/tough-cookie.api.md index 672106f6..8d0a53a0 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.2"; +export const version = "5.0.0-rc.3"; // (No @packageDocumentation comment for this package) diff --git a/lib/__tests__/cookieJar.spec.ts b/lib/__tests__/cookieJar.spec.ts index ebc8233f..3d2e95d6 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.2', + version: 'tough-cookie@5.0.0-rc.3', } expect(data).toEqual(expected) }, diff --git a/lib/__tests__/jarSerialization.spec.ts b/lib/__tests__/jarSerialization.spec.ts index b0dc07bb..ea453f36 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.2') + expect(version).toBe('5.0.0-rc.3') }) 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 20cc2e8d..16844021 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.2' +export const version = '5.0.0-rc.3' diff --git a/package-lock.json b/package-lock.json index 9a2708ec..9d6a5879 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "tough-cookie", - "version": "5.0.0-rc.2", + "version": "5.0.0-rc.3", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "tough-cookie", - "version": "5.0.0-rc.2", + "version": "5.0.0-rc.3", "license": "BSD-3-Clause", "dependencies": { "punycode": "^2.3.1", diff --git a/package.json b/package.json index 383c90b9..324727db 100644 --- a/package.json +++ b/package.json @@ -75,7 +75,7 @@ "RFC6265", "RFC2965" ], - "version": "5.0.0-rc.2", + "version": "5.0.0-rc.3", "homepage": "https://github.com/salesforce/tough-cookie", "repository": { "type": "git",