Skip to content

Commit

Permalink
Version Packages (#1377)
Browse files Browse the repository at this point in the history
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and the packages will be published to npm automatically. If you're not ready to do a release yet, that's fine, whenever you add more changesets to main, this PR will be updated.


# Releases
## @khanacademy/perseus@24.1.0

### Minor Changes

-   [#1376](#1376) [`3ee100add`](3ee100a) Thanks [@benchristel](https://github.com/benchristel)! - Implement the protractor for Mafs interactive graphs


-   [#1381](#1381) [`26dceb8d7`](26dceb8) Thanks [@benchristel](https://github.com/benchristel)! - Make the `mafs.point` flag control whether point graphs with fixed numbers of points should use Mafs. Previously, turning on the `mafs.point` flag would enable Mafs for point graphs with unlimited points as well.

### Patch Changes

-   [#1358](#1358) [`93eeda1e2`](93eeda1) Thanks [@benchristel](https://github.com/benchristel)! - Add TODO comment


-   [#1379](#1379) [`685fa9048`](685fa90) Thanks [@nishasy](https://github.com/nishasy)! - [Interactive Graph Editor] Moving around/renaming components so they make more sense for the upcoming hint mode work


-   [#1370](#1370) [`48e879ace`](48e879a) Thanks [@benchristel](https://github.com/benchristel)! - Internal: copy Mafs' implementation of useMovable into our own useDraggable hook.

## @khanacademy/perseus-editor@7.0.1

### Patch Changes

-   [#1375](#1375) [`a8b3aa9c0`](a8b3aa9) Thanks [@nishasy](https://github.com/nishasy)! - [Interactive Graph Editor] Fix the broken storybook preview for segments, points, and polygons


-   [#1379](#1379) [`685fa9048`](685fa90) Thanks [@nishasy](https://github.com/nishasy)! - [Interactive Graph Editor] Moving around/renaming components so they make more sense for the upcoming hint mode work

-   Updated dependencies \[[`3ee100add`](3ee100a), [`93eeda1e2`](93eeda1), [`685fa9048`](685fa90), [`48e879ace`](48e879a), [`26dceb8d7`](26dceb8)]:
    -   @khanacademy/perseus@24.1.0

Author: khan-actions-bot

Reviewers: benchristel

Required Reviewers:

Approved By: benchristel

Checks: ✅ codecov/project, ✅ codecov/patch, ✅ Upload Coverage (ubuntu-latest, 20.x), ⏭️  Publish npm snapshot, ✅ Lint, Typecheck, Format, and Test (ubuntu-latest, 20.x), ✅ Cypress (ubuntu-latest, 20.x), ✅ Check for .changeset entries for all changed files (ubuntu-latest, 20.x), ✅ Jest Coverage (ubuntu-latest, 20.x), ✅ Check builds for changes in size (ubuntu-latest, 20.x), ✅ gerald

Pull Request URL: #1377
  • Loading branch information
khan-actions-bot committed Jul 1, 2024
1 parent 26dceb8 commit f280004
Show file tree
Hide file tree
Showing 10 changed files with 30 additions and 34 deletions.
5 changes: 0 additions & 5 deletions .changeset/chilly-dolls-agree.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/late-turtles-try.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/lazy-readers-live.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/mean-needles-float.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/olive-rivers-eat.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/tricky-rice-nail.md

This file was deleted.

11 changes: 11 additions & 0 deletions packages/perseus-editor/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# @khanacademy/perseus-editor

## 7.0.1

### Patch Changes

- [#1375](https://github.com/Khan/perseus/pull/1375) [`a8b3aa9c0`](https://github.com/Khan/perseus/commit/a8b3aa9c0098e515d304ee5e4eb5d6b01ba96fcd) Thanks [@nishasy](https://github.com/nishasy)! - [Interactive Graph Editor] Fix the broken storybook preview for segments, points, and polygons

* [#1379](https://github.com/Khan/perseus/pull/1379) [`685fa9048`](https://github.com/Khan/perseus/commit/685fa904815926cfd75105476df63ce76d4f00ae) Thanks [@nishasy](https://github.com/nishasy)! - [Interactive Graph Editor] Moving around/renaming components so they make more sense for the upcoming hint mode work

* Updated dependencies [[`3ee100add`](https://github.com/Khan/perseus/commit/3ee100add8e25da442edccfbde458f270c282112), [`93eeda1e2`](https://github.com/Khan/perseus/commit/93eeda1e2e45345a622f9866bcfd31a27d717e3f), [`685fa9048`](https://github.com/Khan/perseus/commit/685fa904815926cfd75105476df63ce76d4f00ae), [`48e879ace`](https://github.com/Khan/perseus/commit/48e879acee304cac48d67bb0030ac2fc8dc00a50), [`26dceb8d7`](https://github.com/Khan/perseus/commit/26dceb8d7ada9b6f3c47893d8dfaccdbeb3df980)]:
- @khanacademy/perseus@24.1.0

## 7.0.0

### Major Changes
Expand Down
4 changes: 2 additions & 2 deletions packages/perseus-editor/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Perseus editors",
"author": "Khan Academy",
"license": "MIT",
"version": "7.0.0",
"version": "7.0.1",
"publishConfig": {
"access": "public"
},
Expand All @@ -28,7 +28,7 @@
"@khanacademy/kas": "^0.3.9",
"@khanacademy/kmath": "^0.1.12",
"@khanacademy/math-input": "^19.1.0",
"@khanacademy/perseus": "^24.0.0",
"@khanacademy/perseus": "^24.1.0",
"@khanacademy/perseus-core": "1.4.2"
},
"devDependencies": {
Expand Down
16 changes: 16 additions & 0 deletions packages/perseus/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# @khanacademy/perseus

## 24.1.0

### Minor Changes

- [#1376](https://github.com/Khan/perseus/pull/1376) [`3ee100add`](https://github.com/Khan/perseus/commit/3ee100add8e25da442edccfbde458f270c282112) Thanks [@benchristel](https://github.com/benchristel)! - Implement the protractor for Mafs interactive graphs

* [#1381](https://github.com/Khan/perseus/pull/1381) [`26dceb8d7`](https://github.com/Khan/perseus/commit/26dceb8d7ada9b6f3c47893d8dfaccdbeb3df980) Thanks [@benchristel](https://github.com/benchristel)! - Make the `mafs.point` flag control whether point graphs with fixed numbers of points should use Mafs. Previously, turning on the `mafs.point` flag would enable Mafs for point graphs with unlimited points as well.

### Patch Changes

- [#1358](https://github.com/Khan/perseus/pull/1358) [`93eeda1e2`](https://github.com/Khan/perseus/commit/93eeda1e2e45345a622f9866bcfd31a27d717e3f) Thanks [@benchristel](https://github.com/benchristel)! - Add TODO comment

* [#1379](https://github.com/Khan/perseus/pull/1379) [`685fa9048`](https://github.com/Khan/perseus/commit/685fa904815926cfd75105476df63ce76d4f00ae) Thanks [@nishasy](https://github.com/nishasy)! - [Interactive Graph Editor] Moving around/renaming components so they make more sense for the upcoming hint mode work

- [#1370](https://github.com/Khan/perseus/pull/1370) [`48e879ace`](https://github.com/Khan/perseus/commit/48e879acee304cac48d67bb0030ac2fc8dc00a50) Thanks [@benchristel](https://github.com/benchristel)! - Internal: copy Mafs' implementation of useMovable into our own useDraggable hook.

## 24.0.0

### Major Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/perseus/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"description": "Core Perseus API (includes renderers and widgets)",
"author": "Khan Academy",
"license": "MIT",
"version": "24.0.0",
"version": "24.1.0",
"publishConfig": {
"access": "public"
},
Expand Down

0 comments on commit f280004

Please sign in to comment.