Skip to content

Commit

Permalink
Merge pull request #177 from multiversx/vm-renaming-fix
Browse files Browse the repository at this point in the history
Fix vm repository name
  • Loading branch information
popenta committed Jan 6, 2023
2 parents 175406b + 0266c8c commit f2ec42e
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions erdpy/CHANGELOG.md
Expand Up @@ -7,6 +7,9 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
## [Unreleased]
- TBD

## [3.0.3]
- Fixes after repository migrations

## [3.0.2]
- Fixes after repository migrations

Expand Down
2 changes: 1 addition & 1 deletion erdpy/_version.py
@@ -1 +1 @@
__version__ = "3.0.2"
__version__ = "3.0.3"
2 changes: 1 addition & 1 deletion erdpy/dependencies/modules.py
Expand Up @@ -150,7 +150,7 @@ def __init__(self, key: str, aliases: List[str] = None):
aliases = list()

super().__init__(key, aliases)
self.repo_name = 'mx-vm-wasm-go'
self.repo_name = 'mx-chain-vm-go'
self.organisation = 'multiversx'

def _post_install(self, tag: str):
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Expand Up @@ -3,7 +3,7 @@
with open("README.md", "r") as fh:
long_description = "https://github.com/multiversx/mx-sdk-erdpy"

VERSION = "3.0.2"
VERSION = "3.0.3"

try:
with open('./erdpy/_version.py', 'wt') as versionfile:
Expand Down

0 comments on commit f2ec42e

Please sign in to comment.