Skip to content

Commit

Permalink
🚀 v2.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
shravanasati committed Apr 28, 2021
1 parent 6d54f9f commit 2a023de
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,4 +14,7 @@

## v2.0.1 (15/4/2021)
- Made a separate 'list.go' file for the `list` command
- CI build bug fix (redefined embed paths for licenses and gitignores)
- CI build bug fix (redefined embed paths for licenses and gitignores)

## v2.1.0 (28/4/2021)
- Added support for web as a language type for project initialisation
4 changes: 3 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ It is used to initiate the modules in go.
- `default-lang` --> The default language for project initialisation. It is used in case the `lang` argument is not provided in the `init` command. Valid options for the `default-lang` flag are:
* go
* python
* web

- `default-license` --> The default license for project creation. Valid values are:
* MIT
Expand Down Expand Up @@ -101,12 +102,13 @@ The `init` command initialises the project.
Valid options for the language argument are:
- python
- go
- web

Example: `hydra init myProject python`

In case the `lang` argument is not provided, hydra falls back to the `default-lang` configuration.

*hydra* currently supports only python and go for project creation. But, as new versions are published, support for more languages/frameworks will be added.
*hydra* currently supports only python, go and web-frontend for project creation. But, as new versions are published, support for more languages/frameworks will be added.


### version
Expand Down
4 changes: 2 additions & 2 deletions hydra.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,11 @@ import (

const (
NAME string = "hydra"
VERSION string = "2.0.1"
VERSION string = "2.1.0"
)

var (
supportedLangs []string = []string{"go", "python"}
supportedLangs []string = []string{"go", "python", "web"}
supportedLicenses map[string]string = map[string]string{
"APACHE": "Apache License",
"BSD": "Berkeley Software Distribution 3-Clause",
Expand Down

0 comments on commit 2a023de

Please sign in to comment.