Skip to content

Commit

Permalink
Release v3.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
vapao committed Jul 25, 2022
1 parent 71f6450 commit e4fa088
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion spug_api/apps/exec/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class ExecHistory(models.Model, ModelMixin):
digest = models.CharField(max_length=32, db_index=True)
interpreter = models.CharField(max_length=20)
command = models.TextField()
params = models.CharField(max_length=500, default='{}')
params = models.TextField(default='{}')
host_ids = models.TextField()
updated_at = models.CharField(max_length=20, default=human_datetime)

Expand Down
2 changes: 1 addition & 1 deletion spug_api/spug/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@
re.compile('/apis/.*'),
)

SPUG_VERSION = 'v3.2.2'
SPUG_VERSION = 'v3.2.3'

# override default config
try:
Expand Down
2 changes: 1 addition & 1 deletion spug_web/src/libs/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ export * from './functools';
export * from './router';
export const http = _http;
export const history = _history;
export const VERSION = 'v3.2.2';
export const VERSION = 'v3.2.3';

0 comments on commit e4fa088

Please sign in to comment.