-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: prepare for release v1.0.0 #122
Conversation
This comment was marked as off-topic.
This comment was marked as off-topic.
01be0b4
to
94c4121
Compare
rebase and merge this PR, and other repo could refer this PR (modify a little comment & param) |
|
||
# check whether there are new third-party dependencies by diff command, | ||
# diff generated 'current-dependencies.txt' file with 'known-dependencies.txt' file. | ||
diff -w -B -U0 <(sort < ${BASE_PATH}/known-dependencies.txt) \ | ||
<(sort < ${BASE_PATH}/current-dependencies.txt) > ${BASE_PATH}/result.txt | ||
diff -w -B -U0 <(sort <"${BASE_PATH}"/known-dependencies.txt) \ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
keep the space after "<"?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
it's better to not keep space after <
or >
in the shell script style (avoid < ()
and file_descriptor > xx
error)
but keep the original style is also fine (revert it)
hugegraph-dist/scripts/dependency/regenerate_known_dependencies.sh
Outdated
Show resolved
Hide resolved
94c4121
to
e1f0101
Compare
we could use git command to generate source file directly (and exclude some files by
.gitattr
)git archive --format=tar.gz --output=dist/apache-hugegraph-commons/apache-hugegraph-commons-1.0.0-incubating-src.tar.gz --prefix=apache-hugegraph-commons-1.0.0-incubating-src/ release-1.0.0
and I try to unify the release steps by one script, it should be test first