Skip to content

Commit 80f9b6e

Browse files
authored
Merge pull request #2372 from goplus/main
v1.5.0-pre.1
2 parents adad791 + 1f7ee78 commit 80f9b6e

File tree

566 files changed

+2135
-2358
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

566 files changed

+2135
-2358
lines changed

.gitattributes

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
*.expect text eol=lf
22
*.golden text eol=lf
33

4+
*.xgo text eol=lf
45
*.gop text eol=lf
56
*.go text eol=lf
67
*.gox text eol=lf

.github/ISSUE_TEMPLATE/bug-report.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ body:
3434
$ gop run ./sample.gop
3535
// output
3636
```
37-
placeholder: $ gop run ./sample.gop
37+
placeholder: $ xgo run ./sample.gop
3838
render: console
3939
validations:
4040
required: true

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
contact_links:
2-
- name: Visit the Go+ website
3-
url: https://goplus.org
2+
- name: Visit the XGo website
3+
url: https://xgo.dev
44
about: Much help can be found there

.github/ISSUE_TEMPLATE/enhancement.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Feature request
2-
description: Propose a change to Go+
2+
description: Propose a change to XGo
33

44
body:
55
- type: markdown

.github/workflows/go.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: Go+ CI
1+
name: XGo CI
22

33
on:
44
push:
@@ -39,9 +39,9 @@ jobs:
3939
with:
4040
go-version: ${{ matrix.go }}
4141

42-
- name: Test Go+ installer
42+
- name: Test XGo installer
4343
run: |
44-
git config --global user.email "build-robot@goplus.org"
44+
git config --global user.email "build-robot@xgo.dev"
4545
git config --global user.name "build robot"
4646
go test -v cmd/make_test.go
4747
@@ -75,9 +75,9 @@ jobs:
7575
- name: Set types alias env
7676
run: echo "GODEBUG=gotypesalias=1" >> $GITHUB_ENV
7777

78-
- name: Test Go+ installer
78+
- name: Test XGo installer
7979
run: |
80-
git config --global user.email "build-robot@goplus.org"
80+
git config --global user.email "build-robot@xgo.dev"
8181
git config --global user.name "build robot"
8282
go test -v cmd/make_test.go
8383

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,12 @@ _cgo_export.*
3232
_testmain.go
3333
coverage.txt
3434

35+
.xgo/
3536
.gop/
3637
gop_autogen*.go
38+
xgo_autogen*.go
3739
!cmd/xgo/gop_autogen*.go
40+
!cmd/xgo/xgo_autogen*.go
3841
go.json
3942
go.work*
4043
format.result

.goreleaser.yaml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ builds:
1111
main: ./cmd/gop
1212
binary: bin/gop
1313
ldflags:
14-
- -X github.com/goplus/gop/env.buildVersion=v{{.Version}}
15-
- -X github.com/goplus/gop/env.buildDate={{.Date}}
14+
- -X github.com/goplus/xgo/env.buildVersion=v{{.Version}}
15+
- -X github.com/goplus/xgo/env.buildDate={{.Date}}
1616
env:
1717
- CGO_ENABLED=0
1818
goos:
@@ -102,16 +102,16 @@ docker_manifests:
102102

103103
winget:
104104
- name: goplus
105-
homepage: "https://goplus.org/"
105+
homepage: "https://xgo.dev/"
106106
publisher: goplus
107-
publisher_url: https://github.com/goplus/gop
108-
publisher_support_url: "https://github.com/goplus/gop/issues/new"
107+
publisher_url: https://github.com/goplus/xgo
108+
publisher_support_url: "https://github.com/goplus/xgo/issues/new"
109109
package_identifier: goplus.gop
110110
path: "manifests/g/goplus/gop/{{.Version}}"
111111
tags:
112112
- golang
113113
- go
114-
- gop
114+
- xgo
115115
- goplus
116116
- programming
117117
- language
@@ -120,9 +120,9 @@ winget:
120120
- data science
121121
- engineering
122122
- education
123-
short_description: The Go+ Programming Language
123+
short_description: The XGo Programming Language
124124
description: |
125-
The Go+ programming language is designed for engineering, STEM education, and data science.
125+
The XGo programming language is designed for engineering, STEM education, and data science.
126126
- For engineering: working in the simplest language that can be mastered by children.
127127
- For STEM education: studying an engineering language that can be used for work in the future.
128128
- For data science: communicating with engineers in the same language.
@@ -151,11 +151,11 @@ winget:
151151
nfpms:
152152
- package_name: gop
153153
vendor: goplus
154-
homepage: https://goplus.org/
154+
homepage: https://xgo.dev/
155155
maintainer: Li Jie <[email protected]>
156156
license: Apache-2.0
157157
description: |
158-
The Go+ programming language is designed for engineering, STEM education, and data science.
158+
The XGo programming language is designed for engineering, STEM education, and data science.
159159
- For engineering: working in the simplest language that can be mastered by children.
160160
- For STEM education: studying an engineering language that can be used for work in the future.
161161
- For data science: communicating with engineers in the same language.
@@ -237,10 +237,10 @@ nfpms:
237237
snapcrafts:
238238
- id: gop
239239
name: gop
240-
title: The Go+ Programming Language
241-
summary: The Go+ Programming Language
240+
title: The XGo Programming Language
241+
summary: The XGo Programming Language
242242
description: |
243-
The Go+ programming language is designed for engineering, STEM education, and data science.
243+
The XGo programming language is designed for engineering, STEM education, and data science.
244244
- For engineering: working in the simplest language that can be mastered by children.
245245
- For STEM education: studying an engineering language that can be used for work in the future.
246246
- For data science: communicating with engineers in the same language.
@@ -310,7 +310,7 @@ snapcrafts:
310310
command: "gop"
311311
aliases: ["gop"]
312312
environment:
313-
GOPROOT: "$SNAP"
313+
XGOROOT: "$SNAP"
314314

315315
checksum:
316316
name_template: "{{ .ProjectName }}{{ .Version }}.checksums.txt"

CODE_OF_CONDUCT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ representative at an online or offline event.
6060

6161
Instances of abusive, harassing, or otherwise unacceptable behavior may be
6262
reported to the community leaders responsible for enforcement at
63-
conduct@goplus.org.
63+
conduct@xgo.dev.
6464
All complaints will be reviewed and investigated promptly and fairly.
6565

6666
All community leaders are obligated to respect the privacy and security of the

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@ Apache License
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright (c) 2021 The GoPlus Authors (goplus.org). All rights reserved.
189+
Copyright (c) 2021 The XGo Authors (xgo.dev). All rights reserved.
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

0 commit comments

Comments
 (0)