github-actions[bot] github-actions[bot] shunk031 commited on
Commit
38e6163
·
unverified ·
1 Parent(s): 6c0b42f

Release for v1.0.0 (#25)

Browse files

* [tagpr] prepare for the next release

* [tagpr] update CHANGELOG.md

* Update .tagpr

---------

Co-authored-by: github-actions[bot] <github-actions[bot]@users.noreply.github.com>
Co-authored-by: Shunsuke KITADA <shunsuke.kitada.0831@gmail.com>

Files changed (3) hide show
  1. .github/release.yml +4 -0
  2. .tagpr +48 -0
  3. CHANGELOG.md +18 -0
.github/release.yml ADDED
@@ -0,0 +1,4 @@
 
 
 
 
 
1
+ changelog:
2
+ exclude:
3
+ labels:
4
+ - tagpr
.tagpr ADDED
@@ -0,0 +1,48 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # config file for the tagpr in git config format
2
+ # The tagpr generates the initial configuration, which you can rewrite to suit your environment.
3
+ # CONFIGURATIONS:
4
+ # tagpr.releaseBranch
5
+ # Generally, it is "main." It is the branch for releases. The tagpr tracks this branch,
6
+ # creates or updates a pull request as a release candidate, or tags when they are merged.
7
+ #
8
+ # tagpr.versionFile
9
+ # Versioning file containing the semantic version needed to be updated at release.
10
+ # It will be synchronized with the "git tag".
11
+ # Often this is a meta-information file such as gemspec, setup.cfg, package.json, etc.
12
+ # Sometimes the source code file, such as version.go or Bar.pm, is used.
13
+ # If you do not want to use versioning files but only git tags, specify the "-" string here.
14
+ # You can specify multiple version files by comma separated strings.
15
+ #
16
+ # tagpr.vPrefix
17
+ # Flag whether or not v-prefix is added to semver when git tagging. (e.g. v1.2.3 if true)
18
+ # This is only a tagging convention, not how it is described in the version file.
19
+ #
20
+ # tagpr.changelog (Optional)
21
+ # Flag whether or not changelog is added or changed during the release.
22
+ #
23
+ # tagpr.command (Optional)
24
+ # Command to change files just before release.
25
+ #
26
+ # tagpr.template (Optional)
27
+ # Pull request template file in go template format
28
+ #
29
+ # tagpr.templateText (Optional)
30
+ # Pull request template text in go template format
31
+ #
32
+ # tagpr.release (Optional)
33
+ # GitHub Release creation behavior after tagging [true, draft, false]
34
+ # If this value is not set, the release is to be created.
35
+ #
36
+ # tagpr.majorLabels (Optional)
37
+ # Label of major update targets. Default is [major]
38
+ #
39
+ # tagpr.minorLabels (Optional)
40
+ # Label of minor update targets. Default is [minor]
41
+ #
42
+ # tagpr.commitPrefix (Optional)
43
+ # Prefix of commit message. Default is "[tagpr]"
44
+ #
45
+ [tagpr]
46
+ vPrefix = true
47
+ releaseBranch = main
48
+ versionFile = pyproject.toml
CHANGELOG.md ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Changelog
2
+
3
+ ## [v0.0.1](https://github.com/shunk031/huggingface-datasets_JGLUE/commits/v0.0.1) - 2025-03-31
4
+ - Initialize by @shunk031 in https://github.com/shunk031/huggingface-datasets_JGLUE/pull/1
5
+ - Fix for the huggingface dataset viewer by @shunk031 in https://github.com/shunk031/huggingface-datasets_JGLUE/pull/2
6
+ - Follow HF SQuAD dataset by @shunk031 in https://github.com/shunk031/huggingface-datasets_JGLUE/pull/4
7
+ - refactor JGLUE.py by @shunk031 in https://github.com/shunk031/huggingface-datasets_JGLUE/pull/5
8
+ - Specify open encoding by @polm in https://github.com/shunk031/huggingface-datasets_JGLUE/pull/6
9
+ - download parquet from hf datasets in `MARC-ja` by @shunk031 in https://github.com/shunk031/huggingface-datasets_JGLUE/pull/10
10
+ - open file in utf-8 by @kishida in https://github.com/shunk031/huggingface-datasets_JGLUE/pull/11
11
+ - update README by @shunk031 in https://github.com/shunk031/huggingface-datasets_JGLUE/pull/12
12
+ - Update for CI by @shunk031 in https://github.com/shunk031/huggingface-datasets_JGLUE/pull/14
13
+ - Add JCoLA dataset by @shunk031 in https://github.com/shunk031/huggingface-datasets_JGLUE/pull/13
14
+ - update README.md by @shunk031 in https://github.com/shunk031/huggingface-datasets_JGLUE/pull/16
15
+ - Remove datasets.tasks and add trust_remote_code by @mjun0812 in https://github.com/shunk031/huggingface-datasets_JGLUE/pull/17
16
+ - Set package-mode to false in pyproject.toml by @shunk031 in https://github.com/shunk031/huggingface-datasets_JGLUE/pull/21
17
+ - Update dataset URLs and version to 1.0.0 in JGLUE.py and pyproject.toml by @shunk031 in https://github.com/shunk031/huggingface-datasets_JGLUE/pull/23
18
+ - Add GitHub Actions workflow for automated release tagging by @shunk031 in https://github.com/shunk031/huggingface-datasets_JGLUE/pull/24