Skip to content

Commit 7ed1b8a

Browse files
authored
Merge pull request #451 from salesforce/prepare_v5
Prepare v5
2 parents 2e6b3f4 + cbaa1a5 commit 7ed1b8a

File tree

7 files changed

+8
-8
lines changed

7 files changed

+8
-8
lines changed

api/docs/tough-cookie.version.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,5 @@ The version of `tough-cookie`
99
**Signature:**
1010

1111
```typescript
12-
version = "5.0.0-rc.4"
12+
version = "5.0.0"
1313
```

api/tough-cookie.api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ export class Store {
298298
}
299299

300300
// @public
301-
export const version = "5.0.0-rc.4";
301+
export const version = "5.0.0";
302302

303303
// (No @packageDocumentation comment for this package)
304304

lib/__tests__/cookieJar.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -977,7 +977,7 @@ describe('CookieJar', () => {
977977
prefixSecurity: 'silent',
978978
rejectPublicSuffixes: true,
979979
storeType: 'MemoryCookieStore',
980-
version: '[email protected]-rc.4',
980+
version: '[email protected]',
981981
}
982982
expect(data).toEqual(expected)
983983
},

lib/__tests__/jarSerialization.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ import { version } from '../version'
3737

3838
describe('cookieJar serialization', () => {
3939
it('should use the expected version', () => {
40-
expect(version).toBe('5.0.0-rc.4')
40+
expect(version).toBe('5.0.0')
4141
})
4242

4343
it('should provide the list of serialized properties available for a Cookie with `Cookie.serializableProperties`', () => {

lib/version.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
* The version of `tough-cookie`
33
* @public
44
*/
5-
export const version = '5.0.0-rc.4'
5+
export const version = '5.0.0'

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@
7575
"RFC6265",
7676
"RFC2965"
7777
],
78-
"version": "5.0.0-rc.4",
78+
"version": "5.0.0",
7979
"homepage": "https://github.com/salesforce/tough-cookie",
8080
"repository": {
8181
"type": "git",

0 commit comments

Comments
 (0)