Skip to content

Commit

Permalink
Merge pull request google#6044 from google/master_into_develop
Browse files Browse the repository at this point in the history
chore: merge master into develop
  • Loading branch information
alschmiedt authored Mar 29, 2022
2 parents c4a25eb + 10d9cc4 commit 8d2e181
Show file tree
Hide file tree
Showing 11 changed files with 75 additions and 94 deletions.
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/bug_report.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Bug Report
about: Create a report to help us improve
labels: 'type: bug, triage'
labels: 'type: bug, issue: triage'
assignees: ''

---
Expand Down
10 changes: 5 additions & 5 deletions .github/ISSUE_TEMPLATE/documentation.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Documentation
about: Report an issue with our documentation
labels: 'type: documentation, triage'
labels: 'type: documentation, issue: triage'
assignees: ''

---
Expand All @@ -21,10 +21,10 @@ assignees: ''

**What**

<!-- What kind of content is it?
- Check a box with an 'x' between the brackets: [x]
<!-- What kind of content is it?
- Check a box with an 'x' between the brackets: [x]
-->

- [ ] Text
- [ ] Image or Gif
- [ ] Other
Expand All @@ -39,6 +39,6 @@ assignees: ''

**Additional context**

<!-- Add any other context about the problem here.
<!-- Add any other context about the problem here.
- If this is related to a specific pull request, link to it.
-->
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Feature request
about: Suggest an idea for this project
labels: 'type: feature request, triage'
labels: 'type: feature request, issue: triage'
assignees: ''

---
Expand Down
1 change: 1 addition & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,7 @@
- [ ] I branched from develop
- [ ] My pull request is against develop
- [ ] My code follows the [style guide](https://developers.google.com/blockly/guides/modify/web/style-guide)
- [ ] I ran `npm run format` and `npm run lint`

## The details
### Resolves
Expand Down
24 changes: 0 additions & 24 deletions .github/PULL_REQUEST_TEMPLATE/goog_module.md

This file was deleted.

4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -41,11 +41,11 @@ Want to make Blockly better? We welcome contributions to Blockly in the form of

## Releases

The next major release will be **September 30th, 2021**.
The next major release will be during the last week of **March 2022**.

We release by pushing the latest code to the master branch, followed by updating the npm package, our [docs](https://developers.google.com/blockly), and [demo pages](https://google.github.io/blockly-samples/). We typically release a new version of Blockly once a quarter (every 3 months). If there are breaking bugs, such as a crash when performing a standard action or a rendering issue that makes Blockly unusable, we will cherry-pick fixes to master between releases to fix them. The [releases page](https://github.com/google/blockly/releases) has a list of all releases.

Releases are tagged by the release date (YYYYMMDD) with a leading '4.' and a trailing '.0' in case we ever need a major or patch version (such as [2.20190722.1](https://github.com/google/blockly/tree/2.20190722.1)). Releases that have breaking changes or are otherwise not backwards compatible will have a new major version. Patch versions are reserved for bug-fix patches between scheduled releases.
Releases are tagged by the release date (YYYYMMDD) with a leading major version number and a trailing '.0' in case we ever need a major or patch version (such as [2.20190722.1](https://github.com/google/blockly/tree/2.20190722.1)). Releases that have breaking changes or are otherwise not backwards compatible will have a new major version. Patch versions are reserved for bug-fix patches between scheduled releases.

We now have a [beta release on npm](https://www.npmjs.com/package/blockly?activeTab=versions). If you'd like to test the upcoming release, or try out a not-yet-released new API, you can use the beta channel with:

Expand Down
90 changes: 47 additions & 43 deletions blockly_compressed.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion blockly_compressed.js.map

Large diffs are not rendered by default.

28 changes: 14 additions & 14 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
@@ -1,6 +1,6 @@
{
"name": "blockly",
"version": "7.20211209.0",
"version": "7.20211209.4",
"description": "Blockly is a library for building visual programming editors.",
"keywords": [
"blockly"
Expand Down
4 changes: 2 additions & 2 deletions typings/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,11 @@
/// <reference path="core.d.ts" />
/// <reference path="blocks.d.ts" />
/// <reference path="javascript.d.ts" />
/// <reference path="msg/en.d.ts" />
/// <reference path="msg/msg.d.ts" />

import * as Blockly from './core';
import './blocks';
import './javascript';
import './msg/en';
import './msg/msg';

export = Blockly;

0 comments on commit 8d2e181

Please sign in to comment.