Skip to content

Commit

Permalink
Preparing for release 5.0.0-rc.2 (#414)
Browse files Browse the repository at this point in the history
* Preparing for release 5.0.0-rc.2
  • Loading branch information
colincasey committed May 16, 2024
1 parent 460bbe1 commit 42270f5
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 11 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,14 +69,14 @@ jobs:
- name: Ensure API and doc changes have been committed
run: |
git add --renormalize .
if (( "$(git diff --ignore-space-at-eol --ignore-cr-at-eol | wc -l)" != 0 )); then
if (( "$(git diff HEAD --ignore-space-at-eol --ignore-cr-at-eol | wc -l)" != 0 )); then
cat << EOF >> $GITHUB_STEP_SUMMARY
### Detected uncommitted changes
\`\`\`shell
$(git diff)
$(git diff HEAD)
\`\`\`
EOF
git diff
git diff HEAD
exit 1
fi
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.1"
version = "5.0.0-rc.2"
```
2 changes: 1 addition & 1 deletion api/tough-cookie.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ export class Store {
}

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

// (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: 'tough-cookie@5.0.0-rc.1',
version: 'tough-cookie@5.0.0-rc.2',
}
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.1')
expect(version).toBe('5.0.0-rc.2')
})

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.1'
export const version = '5.0.0-rc.2'
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 @@ -67,7 +67,7 @@
"RFC6265",
"RFC2965"
],
"version": "5.0.0-rc.1",
"version": "5.0.0-rc.2",
"homepage": "https://github.com/salesforce/tough-cookie",
"repository": {
"type": "git",
Expand Down

0 comments on commit 42270f5

Please sign in to comment.