Skip to content

Commit a1748c7

Browse files
authored
bump release version into v2.0 (#397)
Signed-off-by: chensuyue <suyue.chen@intel.com>
1 parent 0704b4c commit a1748c7

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

conda_meta/basic/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% set version = "1.14.2" %}
1+
{% set version = "2.0" %}
22
{% set buildnumber = 0 %}
33
package:
44
name: neural-compressor

conda_meta/full/meta.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
{% set version = "1.14.2" %}
1+
{% set version = "2.0" %}
22
{% set buildnumber = 0 %}
33
package:
44
name: neural-compressor-full

neural_compressor/version.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@
1515
# See the License for the specific language governing permissions and
1616
# limitations under the License.
1717
"""Intel® Neural Compressor: An open-source Python library supporting popular model compression techniques."""
18-
__version__ = "1.14.2"
18+
__version__ = "2.0"

test/config/test_config.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,7 @@ def test_device(self):
112112

113113
def test_version(self):
114114
test = '''
115-
version: 2.0
115+
version: 1.0
116116
117117
model:
118118
name: version_yaml
@@ -128,18 +128,18 @@ def test_version(self):
128128
'''
129129
helper(test)
130130
config = conf.Conf('fake_conf.yaml')
131-
self.assertEqual(config.usr_cfg.version, 1.0)
131+
self.assertEqual(config.usr_cfg.version, 2.0)
132132

133133
test = '''
134-
version: 1.0
134+
version: 2.0
135135
136136
model:
137137
name: version_yaml
138138
framework: mxnet
139139
'''
140140
helper(test)
141141
config = conf.Conf('fake_conf.yaml')
142-
self.assertEqual(config.usr_cfg.version, 1.0)
142+
self.assertEqual(config.usr_cfg.version, 2.0)
143143

144144
def test_calibration(self):
145145
test = '''

0 commit comments

Comments
 (0)