Skip to content

Commit 0a2527e

Browse files
authored
Merge pull request #31 from Code-Hex/master
Merge master branch to v1 branch
2 parents a2ebc85 + 82348b0 commit 0a2527e

File tree

2 files changed

+25
-5
lines changed

2 files changed

+25
-5
lines changed

.github/workflows/compile.yml

Lines changed: 10 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
name: Build
22
on:
33
push:
4+
paths-ignore:
5+
- example/**
6+
- README.md
47
branches:
5-
- "master"
6-
pull_request: {}
8+
- "master"
9+
pull_request:
10+
paths-ignore:
11+
- example/**
12+
- README.md
713
jobs:
814
build:
915
runs-on: ${{ matrix.os }}
@@ -13,8 +19,9 @@ jobs:
1319
os:
1420
- macOS-11
1521
go:
16-
- 1.16
1722
- 1.17
23+
- 1.18
24+
- 1.19
1825
steps:
1926
- name: Check out repository code
2027
uses: actions/checkout@v2

README.md

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,21 @@ Please see the example directory.
1313

1414
## REQUIREMENTS
1515

16-
- Higher or equal to macOS Big Sur (11.0.0)
17-
- If you're M1 Mac User need higher or equal to Go 1.16
16+
Higher or equal to Go 1.17.
17+
18+
### macOS Monterey (v12.x.x)
19+
20+
For the latest macOS version is developed on the [master](https://github.com/Code-Hex/vz) branch and released as `v2.x.x`.
21+
22+
You can install by `go get github.com/Code-Hex/vz/v2`
23+
24+
### macOS Big Sur (v11.x.x)
25+
26+
Some methods of this framework are available and some are not, depending on the version of macOS. Therefore, Go language side also needs to control which methods are available depending on the macOS version.
27+
28+
From now on, those available in Big Sur (11.0.0) will be developed on the [v1](https://github.com/Code-Hex/vz/tree/v1) branch and released as `v1.x.x`.
29+
30+
You can install by `go get github.com/Code-Hex/vz`
1831

1932
## IMPORTANT
2033

0 commit comments

Comments
 (0)