File tree 4 files changed +5
-11
lines changed
4 files changed +5
-11
lines changed Original file line number Diff line number Diff line change 2
2
3
3
* Drop support for Ruby < 2.7
4
4
* Drop support for SQL Server < 2017
5
- * Drop support for FreeTDS < 0.95
5
+ * Drop support for FreeTDS < 1.0
6
6
7
7
## 2.1.7
8
8
* Add Ruby 3.3 to the cross compile list
Original file line number Diff line number Diff line change 2
2
3
3
* On Windows? If so, do you need devkit for your ruby install?
4
4
* Using Ubuntu? If so, you may have forgotten to install FreeTDS first.
5
- * Are you using FreeTDS 0.95.80 or later? Check ` $ tsql -C ` to find out.
5
+ * Are you using FreeTDS 1.0.0 or later? Check ` $ tsql -C ` to find out.
6
6
* If not, please update then uninstall the TinyTDS gem and re-install it.
7
7
* Have you made sure to [ enable SQL Server authentication] ( http://bit.ly/1Kw3set ) ?
8
8
* Doing work with threads and the raw client? Use the ConnectionPool gem?
Original file line number Diff line number Diff line change @@ -84,7 +84,7 @@ def do_help
84
84
end
85
85
86
86
unless have_dependencies
87
- abort 'Failed! Do you have FreeTDS 0.95.80 or higher installed?'
87
+ abort 'Failed! Do you have FreeTDS 1.0.0 or higher installed?'
88
88
end
89
89
90
90
create_makefile ( 'tiny_tds/tiny_tds' )
Original file line number Diff line number Diff line change 5
5
OPENSSL_VERSION = ENV [ 'TINYTDS_OPENSSL_VERSION' ] || '1.1.1s'
6
6
OPENSSL_SOURCE_URI = "https://www.openssl.org/source/openssl-#{ OPENSSL_VERSION } .tar.gz"
7
7
8
- FREETDS_VERSION = ENV [ 'TINYTDS_FREETDS_VERSION' ] || "1.1.24"
9
- FREETDS_VERSION_INFO = Hash . new { |h , k |
10
- h [ k ] = { files : "http://www.freetds.org/files/stable/freetds-#{ k } .tar.bz2" }
11
- }
12
- FREETDS_VERSION_INFO [ '1.00' ] = { files : 'http://www.freetds.org/files/stable/freetds-1.00.tar.bz2' }
13
- FREETDS_VERSION_INFO [ '0.99' ] = { files : 'http://www.freetds.org/files/current/freetds-dev.0.99.678.tar.gz' }
14
- FREETDS_VERSION_INFO [ '0.95' ] = { files : 'http://www.freetds.org/files/stable/freetds-0.95.92.tar.gz' }
15
- FREETDS_SOURCE_URI = FREETDS_VERSION_INFO [ FREETDS_VERSION ] [ :files ]
8
+ FREETDS_VERSION = ENV [ 'TINYTDS_FREETDS_VERSION' ] || '1.1.24'
9
+ FREETDS_SOURCE_URI = "http://www.freetds.org/files/stable/freetds-#{ FREETDS_VERSION } .tar.bz2"
You can’t perform that action at this time.
0 commit comments