Skip to content

Commit

Permalink
Merge 177434b into a3c4469
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianrath committed Apr 13, 2022
2 parents a3c4469 + 177434b commit 43c5f03
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

# SnowFS - a fast, scalable version control file storage for graphic files

[![release](https://img.shields.io/badge/Download%20CLI%20Alpha-0.9.1-red)](https://github.com/Snowtrack/SnowFS/releases/tag/v0.9.1)
[![release](https://img.shields.io/badge/Download%20CLI%20Alpha-0.9.3-orange)](https://github.com/Snowtrack/SnowFS/releases/tag/v0.9.1)
[![Coverage Status](https://coveralls.io/repos/github/Snowtrack/SnowFS/badge.svg)](https://coveralls.io/github/Snowtrack/SnowFS)
[![Build and Test](https://github.com/Snowtrack/SnowFS/workflows/Build%20and%20Test/badge.svg)](https://github.com/snowtrack/SnowFS/actions)
[![MIT Licence](https://badges.frapsoft.com/os/mit/mit.png?v=102)](https://opensource.org/licenses/mit-license.php)
Expand All @@ -13,7 +13,7 @@

SnowFS is a high-performance command-line application and node library for *Windows*, *macOS* and *Linux* with a focus on binary file versioning. It is made for the graphics industry and was initially developed for [Snowtrack](https://www.snowtrack.io).

**Disclaimer:** This project is in alpha state and actively developed. Do not use this yet in a production environment or without backups.
**Disclaimer:** This project is in beta and actively developed.

![terminal][terminal_preview]

Expand Down Expand Up @@ -152,7 +152,7 @@ main();

The CLI of `SnowFS` offers some basic functionality and is subject to enhancements. See [Report #90](https://github.com/Snowtrack/SnowFS/issues/90)

[![release](https://img.shields.io/badge/Download%20CLI%20Alpha-0.9.1-red)](https://github.com/Snowtrack/SnowFS/releases/tag/v0.9.1)
[![release](https://img.shields.io/badge/Download%20CLI%20Alpha-0.9.3-orange)](https://github.com/Snowtrack/SnowFS/releases/tag/v0.9.2)

```
$ snow init foo
Expand Down
2 changes: 1 addition & 1 deletion main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const chalk = require('chalk');
const drivelist = require('drivelist');
const AggregateError = require('es-aggregate-error');

const versionString = '0.9.2';
const versionString = '0.9.3';

function fileMatch(relFilepath: string, relCwd: string, pathPattern: string): boolean {
return pathPattern === '*' || (pathPattern === '.' && relFilepath.startsWith(relCwd)) || pathPattern === relative(relCwd, relFilepath);
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "snowfs",
"version": "0.9.2",
"version": "0.9.3",
"description": "Asynchronous version tracker library for binary files",
"main": "index.js",
"types": "dist/index.d.ts",
Expand Down

0 comments on commit 43c5f03

Please sign in to comment.