Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prepare v5 #451

Merged
merged 2 commits into from
Sep 9, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion api/docs/tough-cookie.version.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,5 +9,5 @@ The version of `tough-cookie`
**Signature:**

```typescript
version = "5.0.0-rc.4"
version = "5.0.0"
```
2 changes: 1 addition & 1 deletion api/tough-cookie.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -298,7 +298,7 @@ export class Store {
}

// @public
export const version = "5.0.0-rc.4";
export const version = "5.0.0";

// (No @packageDocumentation comment for this package)

Expand Down
2 changes: 1 addition & 1 deletion lib/__tests__/cookieJar.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -977,7 +977,7 @@ describe('CookieJar', () => {
prefixSecurity: 'silent',
rejectPublicSuffixes: true,
storeType: 'MemoryCookieStore',
version: '[email protected]-rc.4',
version: '[email protected]',
}
expect(data).toEqual(expected)
},
Expand Down
2 changes: 1 addition & 1 deletion lib/__tests__/jarSerialization.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ import { version } from '../version'

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

it('should provide the list of serialized properties available for a Cookie with `Cookie.serializableProperties`', () => {
Expand Down
2 changes: 1 addition & 1 deletion lib/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
* The version of `tough-cookie`
* @public
*/
export const version = '5.0.0-rc.4'
export const version = '5.0.0'
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
"RFC6265",
"RFC2965"
],
"version": "5.0.0-rc.4",
"version": "5.0.0",
"homepage": "https://github.com/salesforce/tough-cookie",
"repository": {
"type": "git",
Expand Down