Merge branch 'master' into dtzxporter-patch-1
This commit is contained in:
commit
63c5f6278b
3 changed files with 5 additions and 19 deletions
19
.github/workflows/verify.yml
vendored
19
.github/workflows/verify.yml
vendored
|
|
@ -1,19 +0,0 @@
|
|||
name: Verify
|
||||
on:
|
||||
pull_request:
|
||||
branches:
|
||||
- master
|
||||
jobs:
|
||||
changelog:
|
||||
runs-on: ubuntu-20.04
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
fetch-depth: 0
|
||||
- name: Check `CHANGELOG.md` has changes
|
||||
run: |
|
||||
! git diff --exit-code origin/master HEAD -- CHANGELOG.md
|
||||
- name: Check `CHANGELOG.md` thanks the PR author
|
||||
if: ${{ github.event.pull_request.user.login != 'hecrj' }}
|
||||
run: |
|
||||
sed -n '/## \[Unreleased\]/,/^## /p' CHANGELOG.md | sed -n '/Many thanks to.../,//p' | grep '@${{ github.event.pull_request.user.login }}'
|
||||
|
|
@ -12,8 +12,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
- Updated `wgpu` to `0.17`. [#2065](https://github.com/iced-rs/iced/pull/2065)
|
||||
- Changed `Button::style` to take an `impl Into<...>` for consistency. [#2046](https://github.com/iced-rs/iced/pull/2046)
|
||||
|
||||
### Fixed
|
||||
- Missing `width` attribute in `styling` example. [#2062](https://github.com/iced-rs/iced/pull/2062)
|
||||
|
||||
Many thanks to...
|
||||
|
||||
- @akshayr-mecha
|
||||
- @dtzxporter
|
||||
|
||||
## [0.10.0] - 2023-07-28
|
||||
|
|
|
|||
|
|
@ -108,6 +108,7 @@ impl Sandbox for Styling {
|
|||
column!["Scroll me!", vertical_space(800), "You did it!"]
|
||||
.width(Length::Fill),
|
||||
)
|
||||
.width(Length::Fill)
|
||||
.height(100);
|
||||
|
||||
let checkbox = checkbox(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue