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

Version and Release Packages #295

Merged
merged 2 commits into from
Nov 14, 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
7 changes: 0 additions & 7 deletions .changeset/wet-icons-serve.md

This file was deleted.

9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
name: CI

on: push
on:
push:
pull_request:

permissions:
contents: write
pull-requests: write
checks: write

jobs:
build:
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/tests-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@ name: E2E Tests

on:
push:
branches:
- main
pull_request:

permissions:
contents: write
pull-requests: write
checks: write

jobs:
test:
runs-on: ubuntu-latest
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/tests-unit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@ name: Unit Tests

on:
push:
branches:
- main
pull_request:

permissions:
contents: write
pull-requests: write
checks: write

jobs:
test:
name: Run Tests
Expand Down
6 changes: 6 additions & 0 deletions packages/core/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# @quiltt/core

## 3.7.3

### Patch Changes

- [#293](https://github.com/quiltt/quiltt-js/pull/293) [`f4b48e6`](https://github.com/quiltt/quiltt-js/commit/f4b48e6db199cae4e880202c28974b481890b7c6) Thanks [@rubendinho](https://github.com/rubendinho)! - Improve documentation

## 3.7.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/core/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@quiltt/core",
"version": "3.7.2",
"version": "3.7.3",
"description": "Javascript API client and utilities for Quiltt",
"keywords": [
"quiltt",
Expand Down
10 changes: 10 additions & 0 deletions packages/react-native/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# @quiltt/react-native

## 3.7.3

### Patch Changes

- [#293](https://github.com/quiltt/quiltt-js/pull/293) [`f4b48e6`](https://github.com/quiltt/quiltt-js/commit/f4b48e6db199cae4e880202c28974b481890b7c6) Thanks [@rubendinho](https://github.com/rubendinho)! - Improve documentation

- Updated dependencies [[`f4b48e6`](https://github.com/quiltt/quiltt-js/commit/f4b48e6db199cae4e880202c28974b481890b7c6)]:
- @quiltt/[email protected]
- @quiltt/[email protected]

## 3.7.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@quiltt/react-native",
"version": "3.7.2",
"version": "3.7.3",
"description": "React Native components for Quiltt Connector",
"homepage": "https://github.com/quiltt/quiltt-js/tree/main/packages/react-native#readme",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion packages/react-native/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Generated by genversion.
export const version = '3.7.2'
export const version = '3.7.3'
9 changes: 9 additions & 0 deletions packages/react/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# @quiltt/react

## 3.7.3

### Patch Changes

- [#293](https://github.com/quiltt/quiltt-js/pull/293) [`f4b48e6`](https://github.com/quiltt/quiltt-js/commit/f4b48e6db199cae4e880202c28974b481890b7c6) Thanks [@rubendinho](https://github.com/rubendinho)! - Improve documentation

- Updated dependencies [[`f4b48e6`](https://github.com/quiltt/quiltt-js/commit/f4b48e6db199cae4e880202c28974b481890b7c6)]:
- @quiltt/[email protected]

## 3.7.2

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@quiltt/react",
"version": "3.7.2",
"version": "3.7.3",
"description": "React components and hooks for Quiltt Connector",
"keywords": [
"quiltt",
Expand Down
2 changes: 1 addition & 1 deletion packages/react/src/version.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
// Generated by genversion.
export const version = '3.7.2'
export const version = '3.7.3'
Loading