Skip to content

Commit

Permalink
rapid-2.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
bhousel committed Dec 23, 2024
1 parent 9d8be4a commit a0afe11
Show file tree
Hide file tree
Showing 5 changed files with 405 additions and 14 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ _Breaking developer changes, which may affect downstream projects or sites that


# [2.5.0](https://github.com/facebook/Rapid/releases/tag/rapid-v2.5.0)
#### 2024-Dec-xx (coming soon!)
#### 2024-Dec-23

#### :tada: New Features
* [#1595], [#1644] New Dataset: Add [Overture Places](https://docs.overturemaps.org/guides/places/) as a readonly dataset
Expand Down
6 changes: 3 additions & 3 deletions RELEASING.md
Original file line number Diff line number Diff line change
Expand Up @@ -128,9 +128,9 @@ aws s3 cp dist <destination>
curl 'https://purge.jsdelivr.net/npm/@rapideditor/rapid/dist/rapid.css'
curl 'https://purge.jsdelivr.net/npm/@rapideditor/rapid/dist/rapid.js'
curl 'https://purge.jsdelivr.net/npm/@rapideditor/rapid/dist/rapid.min.js'
curl 'https://purge.jsdelivr.net/npm/@rapideditor/rapid@2.4/dist/rapid.css'
curl 'https://purge.jsdelivr.net/npm/@rapideditor/rapid@2.4/dist/rapid.js'
curl 'https://purge.jsdelivr.net/npm/@rapideditor/rapid@2.4/dist/rapid.min.js'
curl 'https://purge.jsdelivr.net/npm/@rapideditor/rapid@2.5/dist/rapid.css'
curl 'https://purge.jsdelivr.net/npm/@rapideditor/rapid@2.5/dist/rapid.js'
curl 'https://purge.jsdelivr.net/npm/@rapideditor/rapid@2.5/dist/rapid.min.js'
curl 'https://purge.jsdelivr.net/npm/@rapideditor/rapid@2/dist/rapid.css'
curl 'https://purge.jsdelivr.net/npm/@rapideditor/rapid@2/dist/rapid.js'
curl 'https://purge.jsdelivr.net/npm/@rapideditor/rapid@2/dist/rapid.min.js'
Expand Down
8 changes: 4 additions & 4 deletions modules/Context.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,13 @@ export class Context extends EventEmitter {
constructor() {
super();

// this.version = '2.4.2'; // see https://semver.org/ for examples
this.version = '2.5.0-pre.0'; // see https://semver.org/ for examples
this.version = '2.5.0'; // see https://semver.org/ for examples
// this.version = '2.5.1-pre.0'; // see https://semver.org/ for examples

// If user has not seen this version of our software, we will show them a modal at startup.
// Just bump these dates to a higher number to get the screen to come back.
this.privacyVersion = 20201202; // whether to show the "welcome" screen
this.whatsNewVersion = 20240829; // whether show the "what's new" screen
this.privacyVersion = 20201202; // whether to show the "welcome" screen
this.whatsNewVersion = 20241222; // whether show the "what's new" screen

// These may be set by our continuous deployment scripts, or left empty
this.buildID = '';
Expand Down
Loading

0 comments on commit a0afe11

Please sign in to comment.