Skip to content

Commit f2ec42e

Browse files
authored
Merge pull request #177 from multiversx/vm-renaming-fix
Fix vm repository name
2 parents 175406b + 0266c8c commit f2ec42e

4 files changed

Lines changed: 6 additions & 3 deletions

File tree

erdpy/CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ Check [Keep a Changelog](http://keepachangelog.com/) for recommendations on how
77
## [Unreleased]
88
- TBD
99

10+
## [3.0.3]
11+
- Fixes after repository migrations
12+
1013
## [3.0.2]
1114
- Fixes after repository migrations
1215

erdpy/_version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "3.0.2"
1+
__version__ = "3.0.3"

erdpy/dependencies/modules.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ def __init__(self, key: str, aliases: List[str] = None):
150150
aliases = list()
151151

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

156156
def _post_install(self, tag: str):

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
with open("README.md", "r") as fh:
44
long_description = "https://github.com/multiversx/mx-sdk-erdpy"
55

6-
VERSION = "3.0.2"
6+
VERSION = "3.0.3"
77

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

0 commit comments

Comments
 (0)