Skip to content

Commit

Permalink
feat: use kebab case for group names on hub packages
Browse files Browse the repository at this point in the history
  • Loading branch information
EstebanBorai committed May 16, 2023
1 parent c39f2df commit 7faf3ac
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
3 changes: 2 additions & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion connector/cargo_template/Connector.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "{{project-name}}"
group = "{{project-group}}"
group = "{{project-group | kebab_case}}"
version = "0.1.0"
apiVersion = "0.1.0"
fluvio = "0.10.0"
Expand Down
2 changes: 1 addition & 1 deletion smartmodule/cargo_template/SmartModule.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "{{project-name}}"
group = "{{project-group}}"
group = "{{project-group | kebab_case}}"
version = "0.1.0"
apiVersion = "0.1.0"
description = "{{project-description}}"
Expand Down

0 comments on commit 7faf3ac

Please sign in to comment.