Skip to content

Commit

Permalink
Added travis file, version info
Browse files Browse the repository at this point in the history
  • Loading branch information
itsjoeconway committed Sep 30, 2016
1 parent 0dee9ad commit 35184d2
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 7 deletions.
16 changes: 16 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
language: dart
sudo: required
addons:
postgresql: "9.4"
services:
- postgresql
before_script:
- psql -c 'create database dart_test;' -U postgres
- psql -c 'create user dart with createdb;' -U postgres
- psql -c "alter user dart with password 'dart';" -U postgres
- psql -c 'grant all on database dart_test to dart;' -U postgres
- pub get
script: pub run test -j 1 -r expanded
branches:
only:
- master
4 changes: 2 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Changelog

## 0.0.1
## 0.9.0

- Initial version, created by Stagehand
- Initial version
6 changes: 3 additions & 3 deletions LICENSE
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Copyright (c) 2016, Joe Conway.
Copyright (c) 2016, Stable Kernel, LLC.
All rights reserved.

Redistribution and use in source and binary forms, with or without
Expand All @@ -8,14 +8,14 @@ modification, are permitted provided that the following conditions are met:
* Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
* Neither the name of the <organization> nor the
* Neither the name of the Stable Kernel LLC nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.

THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL <COPYRIGHT HOLDER> BE LIABLE FOR ANY
DISCLAIMED. IN NO EVENT SHALL Stable Kernel LLC BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
Expand Down
4 changes: 2 additions & 2 deletions pubspec.yaml
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
name: postgres
description: A library to connect and query PostgreSQL databases.
version: 0.0.1
version: 0.9.0
author: stable|kernel
homepage: https://github.com/stablekernel/dart-postgres

environment:
sdk: '>=1.0.0 <2.0.0'
sdk: '>=1.19.0 <2.0.0'

dependencies:
crypto: "^2.0.0"
Expand Down

0 comments on commit 35184d2

Please sign in to comment.