Skip to content

Commit

Permalink
Bump version: 0.3.4-dev0 → 0.3.4-dev1
Browse files Browse the repository at this point in the history
  • Loading branch information
nishaq503 committed Feb 12, 2024
1 parent 9a54be6 commit 46143c7
Show file tree
Hide file tree
Showing 7 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion clustering/k-means-clustering-plugin/.bumpversion.cfg
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[bumpversion]
current_version = 0.3.4-dev0
current_version = 0.3.4-dev1
commit = True
tag = False
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)(\-(?P<release>[a-z]+)(?P<dev>\d+))?
Expand Down
2 changes: 1 addition & 1 deletion clustering/k-means-clustering-plugin/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# K-Means Clustering(0.3.4-dev0)
# K-Means Clustering(0.3.4-dev1)

1. This plugin is updated only to the new plugin standards
2. Before plugin support only `.csv` as an input files supported `.csv` and `.feather` file formats. Now this plugin support other vaex supported file formats both as inputs and outputs.
Expand Down
2 changes: 1 addition & 1 deletion clustering/k-means-clustering-plugin/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# K-Means Clustering(v0.3.4-dev0)
# K-Means Clustering(v0.3.4-dev1)

The K-Means Clustering plugin clusters the data using Scikit-learn K-Means clustering algorithm and outputs csv file. Each instance(row) in the input csv file is assigned to one of the clusters. The output csv file contains the column 'Cluster' that shows which cluster the instance belongs to.

Expand Down
2 changes: 1 addition & 1 deletion clustering/k-means-clustering-plugin/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.3.4-dev0
0.3.4-dev1
4 changes: 2 additions & 2 deletions clustering/k-means-clustering-plugin/plugin.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "K-Means Clustering",
"version": "0.3.4-dev0",
"version": "0.3.4-dev1",
"title": "K-Means Clustering",
"description": "Cluster the data using K-Means.",
"author": "Jayapriya Nagarajan (jayapriya.nagarajan@nih.gov), Kelechi Nina Mezu (nina.mezu@nih.gov) Hamdah Shafqat Abbasi (hamdahshafqat.abbasi@nih.gov)",
"institution": "National Center for Advancing Translational Sciences, National Institutes of Health",
"repository": "https://github.com/polusai/polus-plugins",
"website": "https://ncats.nih.gov/preclinical/core/informatics",
"citation": "",
"containerId": "polusai/k-means-clustering-plugin:0.3.4-dev0",
"containerId": "polusai/k-means-clustering-plugin:0.3.4-dev1",
"baseCommand": [
"python3",
"-m",
Expand Down
2 changes: 1 addition & 1 deletion clustering/k-means-clustering-plugin/pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "polus-plugins-clustering-k-means"
version = "0.3.4-dev0"
version = "0.3.4-dev1"
description = ""
authors = [
"Jayapriya Nagarajan <jayapriya.nagarajan@nih.gov>",
Expand Down
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
"""K_means clustering."""

__version__ = "0.3.4-dev0"
__version__ = "0.3.4-dev1"

0 comments on commit 46143c7

Please sign in to comment.